Splitting off bind_port() call into bind_port_helper(), with
[privoxy.git] / urlmatch.h
1 #ifndef URLMATCH_H_INCLUDED
2 #define URLMATCH_H_INCLUDED
3 #define URLMATCH_H_VERSION "$Id: urlmatch.h JGF $"
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 the SourceForge
12  *                IJBSWA team.  http://ijbswa.sourceforge.net
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  *
39  *********************************************************************/
40 \f
41
42 #include "project.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 extern void free_http_request(struct http_request *http);
49 extern jb_err parse_http_request(const char *req,
50                                  struct http_request *http,
51                                  struct client_state *csp);
52 extern jb_err parse_http_url(const char * url,
53                              struct http_request *http,
54                              struct client_state *csp);
55
56 extern int url_match(const struct url_spec *pattern,
57                      const struct http_request *url);
58
59 extern jb_err create_url_spec(struct url_spec * url, const char * buf);
60 extern void free_url_spec(struct url_spec *url);
61
62
63 /* Revision control strings from this header and associated .c file */
64 extern const char urlmatch_rcs[];
65 extern const char urlmatch_h_rcs[];
66
67 #ifdef __cplusplus
68 } /* extern "C" */
69 #endif
70
71 #endif /* ndef URLMATCH_H_INCLUDED */
72
73 /*
74   Local Variables:
75   tab-width: 3
76   end:
77 */