.
[privoxy.git] / cgisimple.h
1 #ifndef CGISIMPLE_H_INCLUDED
2 #define CGISIMPLE_H_INCLUDED
3 #define CGISIMPLE_H_VERSION "$Id: cgisimple.h,v 1.9 2002/03/24 13:25:43 swa Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/cgisimple.h,v $
7  *
8  * Purpose     :  Declares functions to intercept request, generate
9  *                html or gif answers, and to compose HTTP resonses.
10  *                
11  *                Functions declared include:
12  * 
13  *
14  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
15  *                Privoxy team. http://www.privoxy.org/
16  *
17  *                Based on the Internet Junkbuster originally written
18  *                by and Copyright (C) 1997 Anonymous Coders and 
19  *                Junkbusters Corporation.  http://www.junkbusters.com
20  *
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.
26  *
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.
32  *
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.
38  *
39  * Revisions   :
40  *    $Log: cgisimple.h,v $
41  *    Revision 1.9  2002/03/24 13:25:43  swa
42  *    name change related issues
43  *
44  *    Revision 1.8  2002/03/16 23:54:06  jongfoster
45  *    Adding graceful termination feature, to help look for memory leaks.
46  *    If you enable this (which, by design, has to be done by hand
47  *    editing config.h) and then go to http://i.j.b/die, then the program
48  *    will exit cleanly after the *next* request.  It should free all the
49  *    memory that was used.
50  *
51  *    Revision 1.7  2002/03/08 16:43:59  oes
52  *    Renamed cgi_transparent_png to cgi_transparent_image
53  *
54  *    Revision 1.6  2002/03/07 03:48:59  oes
55  *     - Changed built-in images from GIF to PNG
56  *       (with regard to Unisys patent issue)
57  *
58  *    Revision 1.5  2002/01/22 23:26:03  jongfoster
59  *    Adding cgi_transparent_gif() for http://i.j.b/t
60  *
61  *    Revision 1.4  2001/10/23 21:48:19  jongfoster
62  *    Cleaning up error handling in CGI functions - they now send back
63  *    a HTML error page and should never cause a FATAL error.  (Fixes one
64  *    potential source of "denial of service" attacks).
65  *
66  *    CGI actions file editor that works and is actually useful.
67  *
68  *    Ability to toggle JunkBuster remotely using a CGI call.
69  *
70  *    You can turn off both the above features in the main configuration
71  *    file, e.g. if you are running a multi-user proxy.
72  *
73  *    Revision 1.3  2001/10/14 22:00:32  jongfoster
74  *    Adding support for a 404 error when an invalid CGI page is requested.
75  *
76  *    Revision 1.2  2001/10/02 15:31:20  oes
77  *    Introduced show-request cgi
78  *
79  *    Revision 1.1  2001/09/16 17:08:54  jongfoster
80  *    Moving simple CGI functions from cgi.c to new file cgisimple.c
81  *
82  *
83  **********************************************************************/
84 \f
85
86 #include "project.h"
87
88 #ifdef __cplusplus
89 extern "C" {
90 #endif
91
92 /*
93  * CGI functions
94  */
95 extern jb_err cgi_default      (struct client_state *csp,
96                                 struct http_response *rsp,
97                                 const struct map *parameters);
98 extern jb_err cgi_error_404    (struct client_state *csp,
99                                 struct http_response *rsp,
100                                 const struct map *parameters);
101 extern jb_err cgi_robots_txt   (struct client_state *csp,
102                                 struct http_response *rsp,
103                                 const struct map *parameters);
104 extern jb_err cgi_send_banner  (struct client_state *csp,
105                                 struct http_response *rsp,
106                                 const struct map *parameters);
107 extern jb_err cgi_show_status  (struct client_state *csp,
108                                 struct http_response *rsp,
109                                 const struct map *parameters);
110 extern jb_err cgi_show_url_info(struct client_state *csp,
111                                 struct http_response *rsp,
112                                 const struct map *parameters);
113 extern jb_err cgi_show_version (struct client_state *csp,
114                                 struct http_response *rsp,
115                                 const struct map *parameters);
116 extern jb_err cgi_show_request (struct client_state *csp,
117                                 struct http_response *rsp,
118                                 const struct map *parameters);
119 extern jb_err cgi_transparent_image (struct client_state *csp,
120                                    struct http_response *rsp,
121                                    const struct map *parameters);
122
123 #ifdef FEATURE_GRACEFUL_TERMINATION
124 extern jb_err cgi_die (struct client_state *csp,
125                        struct http_response *rsp,
126                        const struct map *parameters);
127 #endif
128
129 /* Revision control strings from this header and associated .c file */
130 extern const char cgisimple_rcs[];
131 extern const char cgisimple_h_rcs[];
132
133 #ifdef __cplusplus
134 } /* extern "C" */
135 #endif
136
137 #endif /* ndef CGISIMPLE_H_INCLUDED */
138
139 /*
140   Local Variables:
141   tab-width: 3
142   end:
143 */