X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgi.h;h=ba334f763fa8b21c0d248f8222ef0732cd122de0;hp=fb6f5742deb85c72a1812358c4b7180c53993da5;hb=3939d3eae875607c76d7bb3314ff6ca6d0590f40;hpb=b28e9205bb0d4ac98d591c6e506219438799d56c diff --git a/cgi.h b/cgi.h index fb6f5742..ba334f76 100644 --- a/cgi.h +++ b/cgi.h @@ -1,6 +1,6 @@ -#ifndef _CGI_H -#define _CGI_H -#define CGI_H_VERSION "$Id: cgi.h,v 1.5 2001/06/29 13:22:44 oes Exp $" +#ifndef CGI_H_INCLUDED +#define CGI_H_INCLUDED +#define CGI_H_VERSION "$Id: cgi.h,v 1.10 2001/08/01 21:19:22 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgi.h,v $ @@ -38,6 +38,25 @@ * * Revisions : * $Log: cgi.h,v $ + * Revision 1.10 2001/08/01 21:19:22 jongfoster + * Moving file version information to a separate CGI page. + * + * Revision 1.9 2001/08/01 00:17:54 jongfoster + * Adding prototype for map_conditional + * + * Revision 1.8 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.7 2001/07/29 18:43:08 jongfoster + * Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to + * ANSI C rules. + * + * Revision 1.6 2001/06/29 21:45:41 oes + * Indentation, CRLF->LF, Tab-> Space + * * Revision 1.5 2001/06/29 13:22:44 oes * - Cleaned up * - Added new functions: default_exports(), make_menu(), @@ -73,6 +92,8 @@ extern struct map *parse_cgi_parameters(char *argstring); /* * CGI functions */ +extern int cgi_show_version(struct client_state *csp, struct http_response *rsp, + struct map *parameters); extern int cgi_default(struct client_state *csp, struct http_response *rsp, struct map *parameters); extern int cgi_show_status(struct client_state *csp, struct http_response *rsp, @@ -91,20 +112,21 @@ extern struct http_response *error_response(struct client_state *csp, const char extern struct http_response *finish_http_response(struct http_response *rsp); extern void free_http_response(struct http_response *rsp); -extern struct map *default_exports(struct client_state *csp, char *caller); -extern struct map *map_block_killer(struct map *map, char *name); -extern char *fill_template(struct client_state *csp, const char *template, struct map *exports); +extern struct map * default_exports(const struct client_state *csp, const char *caller); +extern void map_block_killer(struct map *map, const char *name); +extern void map_conditional(struct map *exports, const char *name, int choose_first); +extern char *fill_template(struct client_state *csp, const char *templatename, struct map *exports); /* * Text generators */ extern char *make_menu(const char *self); -extern char *dump_map(struct map *map); +extern char *dump_map(const struct map *map); -#ifdef STATISTICS +#ifdef FEATURE_STATISTICS extern struct map *add_stats(struct map *exports); -#endif /* def STATISTICS */ +#endif /* def FEATURE_STATISTICS */ /* @@ -136,7 +158,7 @@ extern const char cgi_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _CGI_H */ +#endif /* ndef CGI_H_INCLUDED */ /* Local Variables: