X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=parsers.h;h=458d2c7cb775adf356faa4530e8c2934b3a1dbc4;hp=b68ee8dba837d391817bfb916031d16bba120720;hb=3939d3eae875607c76d7bb3314ff6ca6d0590f40;hpb=362f5979d9efa6e7c1c38c1b75e41e91c710772b diff --git a/parsers.h b/parsers.h index b68ee8db..458d2c7c 100644 --- a/parsers.h +++ b/parsers.h @@ -1,6 +1,6 @@ -#ifndef _PARSERS_H -#define _PARSERS_H -#define PARSERS_H_VERSION "$Id: parsers.h,v 1.7 2001/06/29 13:32:14 oes Exp $" +#ifndef PARSERS_H_INCLUDED +#define PARSERS_H_INCLUDED +#define PARSERS_H_VERSION "$Id: parsers.h,v 1.10 2001/07/30 22:08:36 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/parsers.h,v $ @@ -43,6 +43,19 @@ * * Revisions : * $Log: parsers.h,v $ + * Revision 1.10 2001/07/30 22:08:36 jongfoster + * Tidying up #defines: + * - All feature #defines are now of the form FEATURE_xxx + * - Permanently turned off WIN_GUI_EDIT + * - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS + * + * Revision 1.9 2001/07/29 18:43:08 jongfoster + * Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to + * ANSI C rules. + * + * Revision 1.8 2001/07/13 14:01:54 oes + * Removed all #ifdef PCRS + * * Revision 1.7 2001/06/29 13:32:14 oes * Removed logentry from cancelled commit * @@ -110,22 +123,25 @@ extern char *client_ua(const struct parsers *v, char *s, struct client_state *cs extern char *client_from(const struct parsers *v, char *s, struct client_state *csp); extern char *client_send_cookie(const struct parsers *v, char *s, struct client_state *csp); extern char *client_x_forwarded(const struct parsers *v, char *s, struct client_state *csp); + extern void client_cookie_adder(struct client_state *csp); extern void client_xtra_adder(struct client_state *csp); +extern void connection_close_adder(struct client_state *csp); extern void client_x_forwarded_adder(struct client_state *csp); + extern char *server_set_cookie(const struct parsers *v, char *s, struct client_state *csp); extern char *content_type(const struct parsers *v, char *s, struct client_state *csp); extern char *content_length(const struct parsers *v, char *s, struct client_state *csp); -#ifdef FORCE_LOAD +#ifdef FEATURE_FORCE_LOAD char *client_host(const struct parsers *v, char *s, struct client_state *csp); int strclean(const char *string, const char *substring); -#endif /* def FORCE_LOAD */ +#endif /* def FEATURE_FORCE_LOAD */ -#if defined(DETECT_MSIE_IMAGES) +#if defined(FEATURE_IMAGE_DETECT_MSIE) extern char *client_accept(const struct parsers *v, char *s, struct client_state *csp); -#endif /* defined(DETECT_MSIE_IMAGES) */ +#endif /* defined(FEATURE_IMAGE_DETECT_MSIE) */ /* Revision control strings from this header and associated .c file */ extern const char parsers_rcs[]; @@ -135,7 +151,7 @@ extern const char parsers_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _PARSERS_H */ +#endif /* ndef PARSERS_H_INCLUDED */ /* Local Variables: