1 #ifndef URLMATCH_H_INCLUDED
2 #define URLMATCH_H_INCLUDED
3 #define URLMATCH_H_VERSION "$Id: urlmatch.h,v 1.3 2002/03/26 22:29:55 swa Exp $"
4 /*********************************************************************
6 * File : $Source: /cvsroot/ijbswa/current/urlmatch.h,v $
8 * Purpose : Declares functions to match URLs against URL
11 * Copyright : Written by and Copyright (C) 2001 the SourceForge
12 * Privoxy team. http://www.privoxy.org/
14 * Based on the Internet Junkbuster originally written
15 * by and Copyright (C) 1997 Anonymous Coders and
16 * Junkbusters Corporation. http://www.junkbusters.com
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.
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.
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.
37 * $Log: urlmatch.h,v $
38 * Revision 1.3 2002/03/26 22:29:55 swa
39 * we have a new homepage!
41 * Revision 1.2 2002/03/24 13:25:43 swa
42 * name change related issues
44 * Revision 1.1 2002/01/17 20:53:46 jongfoster
45 * Moving all our URL and URL pattern parsing code to the same file - it
46 * was scattered around in filters.c, loaders.c and parsers.c.
48 * Providing a single, simple url_match(pattern,url) function - rather than
49 * the 3-line match routine which was repeated all over the place.
51 * Renaming free_url to free_url_spec, since it frees a struct url_spec.
53 * Providing parse_http_url() so that URLs can be parsed without faking a
54 * HTTP request line for parse_http_request() or repeating the parsing
55 * code (both of which were techniques that were actually in use).
57 * Standardizing that struct http_request is used to represent a URL, and
58 * struct url_spec is used to represent a URL pattern. (Before, URLs were
59 * represented as seperate variables and a partially-filled-in url_spec).
62 *********************************************************************/
71 extern void free_http_request(struct http_request *http);
72 extern jb_err parse_http_request(const char *req,
73 struct http_request *http,
74 struct client_state *csp);
75 extern jb_err parse_http_url(const char * url,
76 struct http_request *http,
77 struct client_state *csp);
79 extern int url_match(const struct url_spec *pattern,
80 const struct http_request *url);
82 extern jb_err create_url_spec(struct url_spec * url, const char * buf);
83 extern void free_url_spec(struct url_spec *url);
86 /* Revision control strings from this header and associated .c file */
87 extern const char urlmatch_rcs[];
88 extern const char urlmatch_h_rcs[];
94 #endif /* ndef URLMATCH_H_INCLUDED */