X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgi.h;h=56016bbb3233d30048953246d6bdab98e465ceeb;hp=2217b06521dae323663619046b38557c98fcbbe1;hb=4d5562a93fbe978ed96fa679ed32f8936682824a;hpb=22a9dae43d14fba82c86236df130c53713e3b693 diff --git a/cgi.h b/cgi.h index 2217b065..56016bbb 100644 --- a/cgi.h +++ b/cgi.h @@ -1,6 +1,6 @@ #ifndef CGI_H_INCLUDED #define CGI_H_INCLUDED -#define CGI_H_VERSION "$Id: cgi.h,v 1.11 2001/08/05 16:06:20 jongfoster Exp $" +#define CGI_H_VERSION "$Id: cgi.h,v 1.12 2001/09/13 23:31:25 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgi.h,v $ @@ -38,6 +38,9 @@ * * Revisions : * $Log: cgi.h,v $ + * Revision 1.12 2001/09/13 23:31:25 jongfoster + * Moving image data to cgi.c rather than cgi.h. + * * Revision 1.11 2001/08/05 16:06:20 jongfoster * Modifiying "struct map" so that there are now separate header and * "map_entry" structures. This means that functions which modify a @@ -116,9 +119,11 @@ extern struct http_response *error_response(struct client_state *csp, const char /* * CGI support functions */ -extern struct http_response *finish_http_response(struct http_response *rsp); +extern struct http_response * alloc_http_response(void); extern void free_http_response(struct http_response *rsp); +extern struct http_response *finish_http_response(struct http_response *rsp); + 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);