Advertise IPv6 support on the show-status page.
[privoxy.git] / urlmatch.h
1 #ifndef URLMATCH_H_INCLUDED
2 #define URLMATCH_H_INCLUDED
3 #define URLMATCH_H_VERSION "$Id: urlmatch.h,v 1.13 2009/03/02 19:18:11 fabiankeil Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/urlmatch.h,v $
7  *
8  * Purpose     :  Declares functions to match URLs against URL
9  *                patterns.
10  *
11  * Copyright   :  Written by and Copyright (C) 2001-2002, 2006 the SourceForge
12  *                Privoxy team. http://www.privoxy.org/
13  *
14  *                Based on the Internet Junkbuster originally written
15  *                by and Copyright (C) 1997 Anonymous Coders and 
16  *                Junkbusters Corporation.  http://www.junkbusters.com
17  *
18  *                This program is free software; you can redistribute it 
19  *                and/or modify it under the terms of the GNU General
20  *                Public License as published by the Free Software
21  *                Foundation; either version 2 of the License, or (at
22  *                your option) any later version.
23  *
24  *                This program is distributed in the hope that it will
25  *                be useful, but WITHOUT ANY WARRANTY; without even the
26  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
27  *                PARTICULAR PURPOSE.  See the GNU General Public
28  *                License for more details.
29  *
30  *                The GNU General Public License should be included with
31  *                this file.  If not, you can view it at
32  *                http://www.gnu.org/copyleft/gpl.html
33  *                or write to the Free Software Foundation, Inc., 59
34  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
35  *
36  * Revisions   :
37  *    $Log: urlmatch.h,v $
38  *    Revision 1.13  2009/03/02 19:18:11  fabiankeil
39  *    Streamline parse_http_request()'s prototype. As
40  *    cparser pointed out it doesn't actually use csp.
41  *
42  *    Revision 1.12  2008/05/04 16:18:32  fabiankeil
43  *    Provide parse_http_url() with a third parameter to specify
44  *    whether or not URLs without protocol are acceptable.
45  *
46  *    Revision 1.11  2008/05/04 13:30:55  fabiankeil
47  *    Streamline parse_http_url()'s prototype.
48  *
49  *    Revision 1.10  2008/04/14 18:11:21  fabiankeil
50  *    The compiler might not notice it, but the buffer passed to
51  *    create_url_spec() is modified later on and thus shouldn't
52  *    be declared immutable.
53  *
54  *    Revision 1.9  2008/04/08 16:07:39  fabiankeil
55  *    Make it harder to mistake url_match()'s
56  *    second parameter for an url_spec.
57  *
58  *    Revision 1.8  2007/09/02 15:31:20  fabiankeil
59  *    Move match_portlist() from filter.c to urlmatch.c.
60  *    It's used for url matching, not for filtering.
61  *
62  *    Revision 1.7  2007/01/06 14:24:38  fabiankeil
63  *    Mark *csp as immutable for parse_http_url()
64  *    and url_match().
65  *
66  *    Revision 1.6  2006/12/06 19:12:43  fabiankeil
67  *    Added prototype for init_domain_components().
68  *
69  *    Revision 1.5  2006/07/18 14:48:47  david__schmidt
70  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
71  *    with what was really the latest development (the v_3_0_branch branch)
72  *
73  *    Revision 1.3  2002/03/26 22:29:55  swa
74  *    we have a new homepage!
75  *
76  *    Revision 1.2  2002/03/24 13:25:43  swa
77  *    name change related issues
78  *
79  *    Revision 1.1  2002/01/17 20:53:46  jongfoster
80  *    Moving all our URL and URL pattern parsing code to the same file - it
81  *    was scattered around in filters.c, loaders.c and parsers.c.
82  *
83  *    Providing a single, simple url_match(pattern,url) function - rather than
84  *    the 3-line match routine which was repeated all over the place.
85  *
86  *    Renaming free_url to free_url_spec, since it frees a struct url_spec.
87  *
88  *    Providing parse_http_url() so that URLs can be parsed without faking a
89  *    HTTP request line for parse_http_request() or repeating the parsing
90  *    code (both of which were techniques that were actually in use).
91  *
92  *    Standardizing that struct http_request is used to represent a URL, and
93  *    struct url_spec is used to represent a URL pattern.  (Before, URLs were
94  *    represented as seperate variables and a partially-filled-in url_spec).
95  *
96  *
97  *********************************************************************/
98 \f
99
100 #include "project.h"
101
102 #ifdef __cplusplus
103 extern "C" {
104 #endif
105
106 extern void free_http_request(struct http_request *http);
107 extern jb_err init_domain_components(struct http_request *http);
108 extern jb_err parse_http_request(const char *req, struct http_request *http);
109 extern jb_err parse_http_url(const char *url,
110                              struct http_request *http,
111                              int require_protocol);
112 #define REQUIRE_PROTOCOL 1
113
114 extern int url_match(const struct url_spec *pattern,
115                      const struct http_request *http);
116
117 extern jb_err create_url_spec(struct url_spec *url, char *buf);
118 extern void free_url_spec(struct url_spec *url);
119 extern int match_portlist(const char *portlist, int port);
120 extern jb_err parse_forwarder_address(char *address, char **hostname, int *port);
121
122
123 /* Revision control strings from this header and associated .c file */
124 extern const char urlmatch_rcs[];
125 extern const char urlmatch_h_rcs[];
126
127 #ifdef __cplusplus
128 } /* extern "C" */
129 #endif
130
131 #endif /* ndef URLMATCH_H_INCLUDED */
132
133 /*
134   Local Variables:
135   tab-width: 3
136   end:
137 */