1 #ifndef CGISIMPLE_H_INCLUDED
2 #define CGISIMPLE_H_INCLUDED
3 #define CGISIMPLE_H_VERSION "$Id: cgisimple.h,v 1.8 2002/03/16 23:54:06 jongfoster Exp $"
4 /*********************************************************************
6 * File : $Source: /cvsroot/ijbswa/current/cgisimple.h,v $
8 * Purpose : Declares functions to intercept request, generate
9 * html or gif answers, and to compose HTTP resonses.
11 * Functions declared include:
14 * Copyright : Written by and Copyright (C) 2001 the SourceForge
15 * Privoxy team. http://ijbswa.sourceforge.net
17 * Based on the Internet Junkbuster originally written
18 * by and Copyright (C) 1997 Anonymous Coders and
19 * Junkbusters Corporation. http://www.junkbusters.com
21 * This program is free software; you can redistribute it
22 * and/or modify it under the terms of the GNU General
23 * Public License as published by the Free Software
24 * Foundation; either version 2 of the License, or (at
25 * your option) any later version.
27 * This program is distributed in the hope that it will
28 * be useful, but WITHOUT ANY WARRANTY; without even the
29 * implied warranty of MERCHANTABILITY or FITNESS FOR A
30 * PARTICULAR PURPOSE. See the GNU General Public
31 * License for more details.
33 * The GNU General Public License should be included with
34 * this file. If not, you can view it at
35 * http://www.gnu.org/copyleft/gpl.html
36 * or write to the Free Software Foundation, Inc., 59
37 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
40 * $Log: cgisimple.h,v $
41 * Revision 1.8 2002/03/16 23:54:06 jongfoster
42 * Adding graceful termination feature, to help look for memory leaks.
43 * If you enable this (which, by design, has to be done by hand
44 * editing config.h) and then go to http://i.j.b/die, then the program
45 * will exit cleanly after the *next* request. It should free all the
46 * memory that was used.
48 * Revision 1.7 2002/03/08 16:43:59 oes
49 * Renamed cgi_transparent_png to cgi_transparent_image
51 * Revision 1.6 2002/03/07 03:48:59 oes
52 * - Changed built-in images from GIF to PNG
53 * (with regard to Unisys patent issue)
55 * Revision 1.5 2002/01/22 23:26:03 jongfoster
56 * Adding cgi_transparent_gif() for http://i.j.b/t
58 * Revision 1.4 2001/10/23 21:48:19 jongfoster
59 * Cleaning up error handling in CGI functions - they now send back
60 * a HTML error page and should never cause a FATAL error. (Fixes one
61 * potential source of "denial of service" attacks).
63 * CGI actions file editor that works and is actually useful.
65 * Ability to toggle JunkBuster remotely using a CGI call.
67 * You can turn off both the above features in the main configuration
68 * file, e.g. if you are running a multi-user proxy.
70 * Revision 1.3 2001/10/14 22:00:32 jongfoster
71 * Adding support for a 404 error when an invalid CGI page is requested.
73 * Revision 1.2 2001/10/02 15:31:20 oes
74 * Introduced show-request cgi
76 * Revision 1.1 2001/09/16 17:08:54 jongfoster
77 * Moving simple CGI functions from cgi.c to new file cgisimple.c
80 **********************************************************************/
92 extern jb_err cgi_default (struct client_state *csp,
93 struct http_response *rsp,
94 const struct map *parameters);
95 extern jb_err cgi_error_404 (struct client_state *csp,
96 struct http_response *rsp,
97 const struct map *parameters);
98 extern jb_err cgi_robots_txt (struct client_state *csp,
99 struct http_response *rsp,
100 const struct map *parameters);
101 extern jb_err cgi_send_banner (struct client_state *csp,
102 struct http_response *rsp,
103 const struct map *parameters);
104 extern jb_err cgi_show_status (struct client_state *csp,
105 struct http_response *rsp,
106 const struct map *parameters);
107 extern jb_err cgi_show_url_info(struct client_state *csp,
108 struct http_response *rsp,
109 const struct map *parameters);
110 extern jb_err cgi_show_version (struct client_state *csp,
111 struct http_response *rsp,
112 const struct map *parameters);
113 extern jb_err cgi_show_request (struct client_state *csp,
114 struct http_response *rsp,
115 const struct map *parameters);
116 extern jb_err cgi_transparent_image (struct client_state *csp,
117 struct http_response *rsp,
118 const struct map *parameters);
120 #ifdef FEATURE_GRACEFUL_TERMINATION
121 extern jb_err cgi_die (struct client_state *csp,
122 struct http_response *rsp,
123 const struct map *parameters);
126 /* Revision control strings from this header and associated .c file */
127 extern const char cgisimple_rcs[];
128 extern const char cgisimple_h_rcs[];
134 #endif /* ndef CGISIMPLE_H_INCLUDED */