X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgi.h;h=ebbc392d0c5ca94ccd291ee7f3a10d1306c56562;hp=3ddd73b59f89a410f867e88909efbe44e2f1e702;hb=97818dde6598d1228974d8c778622e6fd3ead29e;hpb=646281a3dbc90f402492a34c9089b0447fe5c6f9 diff --git a/cgi.h b/cgi.h index 3ddd73b5..ebbc392d 100644 --- a/cgi.h +++ b/cgi.h @@ -1,9 +1,9 @@ #ifndef CGI_H_INCLUDED #define CGI_H_INCLUDED -#define CGI_H_VERSION "$Id: cgi.h,v 1.27 2002/04/24 02:16:51 oes Exp $" +#define CGI_H_VERSION "$Id: cgi.h,v 1.29.2.2 2004/02/17 13:30:23 oes Exp $" /********************************************************************* * - * File : $Source: /cvsroot/ijbswa/current/cgi.h,v $ + * File : $Source: /cvsroot/ijbswa/current/Attic/cgi.h,v $ * * Purpose : Declares functions to intercept request, generate * html or gif answers, and to compose HTTP resonses. @@ -38,6 +38,30 @@ * * Revisions : * $Log: cgi.h,v $ + * Revision 1.29.2.2 2004/02/17 13:30:23 oes + * Moved cgi_error_disabled() from cgiedit.c to + * cgi.c to re-enable build with --disable-editor. + * Fixes Bug #892744. Thanks to Matthew Fischer + * for spotting. + * + * Revision 1.29.2.1 2003/12/17 16:33:28 oes + * Added prototype of new function cgi_redirect + * + * Revision 1.29 2002/05/19 11:33:21 jongfoster + * If a CGI error was not handled, and propogated back to + * dispatch_known_cgi(), then it was assumed to be "out of memory". + * This gave a very misleading error message. + * + * Now other errors will cause a simple message giving the error + * number and asking the user to report a bug. + * + * Bug report: + * http://sourceforge.net/tracker/index.php?func=detail + * &aid=557905&group_id=11118&atid=111118 + * + * Revision 1.28 2002/04/26 12:54:03 oes + * New function add_help_link + * * Revision 1.27 2002/04/24 02:16:51 oes * Moved get_char_param, get_string_param and get_number_param here from cgiedit.c * @@ -190,11 +214,18 @@ extern jb_err template_fill_for_cgi(struct client_state *csp, extern void cgi_init_error_messages(void); extern struct http_response *cgi_error_memory(void); +extern jb_err cgi_redirect (struct http_response * rsp, const char *target); + extern jb_err cgi_error_no_template(struct client_state *csp, struct http_response *rsp, const char *template_name); extern jb_err cgi_error_bad_param(struct client_state *csp, struct http_response *rsp); +extern jb_err cgi_error_disabled(struct client_state *csp, + struct http_response *rsp); +extern jb_err cgi_error_unknown(struct client_state *csp, + struct http_response *rsp, + jb_err error_to_report); extern jb_err get_number_param(struct client_state *csp, const struct map *parameters,