Replace TABs by spaces in source code.
[privoxy.git] / cgisimple.h
1 #ifndef CGISIMPLE_H_INCLUDED
2 #define CGISIMPLE_H_INCLUDED
3 #define CGISIMPLE_H_VERSION "$Id: cgisimple.h,v 1.13 2006/07/18 14:48:45 david__schmidt 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.13  2006/07/18 14:48:45  david__schmidt
42  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
43  *    with what was really the latest development (the v_3_0_branch branch)
44  *
45  *    Revision 1.11  2002/04/05 15:50:53  oes
46  *    added send-stylesheet CGI
47  *
48  *    Revision 1.10  2002/03/26 22:29:54  swa
49  *    we have a new homepage!
50  *
51  *    Revision 1.9  2002/03/24 13:25:43  swa
52  *    name change related issues
53  *
54  *    Revision 1.8  2002/03/16 23:54:06  jongfoster
55  *    Adding graceful termination feature, to help look for memory leaks.
56  *    If you enable this (which, by design, has to be done by hand
57  *    editing config.h) and then go to http://i.j.b/die, then the program
58  *    will exit cleanly after the *next* request.  It should free all the
59  *    memory that was used.
60  *
61  *    Revision 1.7  2002/03/08 16:43:59  oes
62  *    Renamed cgi_transparent_png to cgi_transparent_image
63  *
64  *    Revision 1.6  2002/03/07 03:48:59  oes
65  *     - Changed built-in images from GIF to PNG
66  *       (with regard to Unisys patent issue)
67  *
68  *    Revision 1.5  2002/01/22 23:26:03  jongfoster
69  *    Adding cgi_transparent_gif() for http://i.j.b/t
70  *
71  *    Revision 1.4  2001/10/23 21:48:19  jongfoster
72  *    Cleaning up error handling in CGI functions - they now send back
73  *    a HTML error page and should never cause a FATAL error.  (Fixes one
74  *    potential source of "denial of service" attacks).
75  *
76  *    CGI actions file editor that works and is actually useful.
77  *
78  *    Ability to toggle JunkBuster remotely using a CGI call.
79  *
80  *    You can turn off both the above features in the main configuration
81  *    file, e.g. if you are running a multi-user proxy.
82  *
83  *    Revision 1.3  2001/10/14 22:00:32  jongfoster
84  *    Adding support for a 404 error when an invalid CGI page is requested.
85  *
86  *    Revision 1.2  2001/10/02 15:31:20  oes
87  *    Introduced show-request cgi
88  *
89  *    Revision 1.1  2001/09/16 17:08:54  jongfoster
90  *    Moving simple CGI functions from cgi.c to new file cgisimple.c
91  *
92  *
93  **********************************************************************/
94 \f
95
96 #include "project.h"
97
98 #ifdef __cplusplus
99 extern "C" {
100 #endif
101
102 /*
103  * CGI functions
104  */
105 extern jb_err cgi_default      (struct client_state *csp,
106                                 struct http_response *rsp,
107                                 const struct map *parameters);
108 extern jb_err cgi_error_404    (struct client_state *csp,
109                                 struct http_response *rsp,
110                                 const struct map *parameters);
111 extern jb_err cgi_robots_txt   (struct client_state *csp,
112                                 struct http_response *rsp,
113                                 const struct map *parameters);
114 extern jb_err cgi_send_banner  (struct client_state *csp,
115                                 struct http_response *rsp,
116                                 const struct map *parameters);
117 extern jb_err cgi_show_status  (struct client_state *csp,
118                                 struct http_response *rsp,
119                                 const struct map *parameters);
120 extern jb_err cgi_show_url_info(struct client_state *csp,
121                                 struct http_response *rsp,
122                                 const struct map *parameters);
123 extern jb_err cgi_show_version (struct client_state *csp,
124                                 struct http_response *rsp,
125                                 const struct map *parameters);
126 extern jb_err cgi_show_request (struct client_state *csp,
127                                 struct http_response *rsp,
128                                 const struct map *parameters);
129 extern jb_err cgi_transparent_image (struct client_state *csp,
130                                      struct http_response *rsp,
131                                      const struct map *parameters);
132 extern jb_err cgi_send_stylesheet(struct client_state *csp,
133                                   struct http_response *rsp,
134                                   const struct map *parameters);
135 extern jb_err cgi_send_user_manual(struct client_state *csp,
136                                    struct http_response *rsp,
137                                    const struct map *parameters);
138
139
140 #ifdef FEATURE_GRACEFUL_TERMINATION
141 extern jb_err cgi_die (struct client_state *csp,
142                        struct http_response *rsp,
143                        const struct map *parameters);
144 #endif
145
146 /* Revision control strings from this header and associated .c file */
147 extern const char cgisimple_rcs[];
148 extern const char cgisimple_h_rcs[];
149
150 #ifdef __cplusplus
151 } /* extern "C" */
152 #endif
153
154 #endif /* ndef CGISIMPLE_H_INCLUDED */
155
156 /*
157   Local Variables:
158   tab-width: 3
159   end:
160 */