Rebuilding from latest configure.in and acconfig.h
[privoxy.git] / cgi.h
1 #ifndef CGI_H_INCLUDED
2 #define CGI_H_INCLUDED
3 #define CGI_H_VERSION "$Id: cgi.h,v 1.7 2001/07/29 18:43:08 jongfoster Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/cgi.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  *                IJBSWA team.  http://ijbswa.sourceforge.net
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: cgi.h,v $
41  *    Revision 1.7  2001/07/29 18:43:08  jongfoster
42  *    Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to
43  *    ANSI C rules.
44  *
45  *    Revision 1.6  2001/06/29 21:45:41  oes
46  *    Indentation, CRLF->LF, Tab-> Space
47  *
48  *    Revision 1.5  2001/06/29 13:22:44  oes
49  *    - Cleaned up
50  *    - Added new functions: default_exports(), make_menu(),
51  *      error_response() etc, ranamed others and changed
52  *      param and return types.
53  *    - Removed HTTP/HTML snipplets
54  *    - Removed logentry from cancelled commit
55  *
56  *    Revision 1.4  2001/06/09 10:50:58  jongfoster
57  *    Changing "show URL info" handler to new style.
58  *    Adding "extern" to some function prototypes.
59  *
60  *    Revision 1.3  2001/06/03 19:12:16  oes
61  *    introduced new cgi handling
62  *
63  *    No revisions before 1.3
64  *
65  **********************************************************************/
66 \f
67
68 #include "project.h"
69
70 #ifdef __cplusplus
71 extern "C" {
72 #endif
73
74 /*
75  * Dispatch & parameter parsing functions
76  */
77 extern struct http_response *dispatch_cgi(struct client_state *csp);
78 extern struct map *parse_cgi_parameters(char *argstring);
79
80 /*
81  * CGI functions
82  */
83 extern int cgi_default(struct client_state *csp, struct http_response *rsp,
84                        struct map *parameters);
85 extern int cgi_show_status(struct client_state *csp, struct http_response *rsp,
86                            struct map *parameters);
87 extern int cgi_show_url_info(struct client_state *csp, struct http_response *rsp,
88                              struct map *parameters);
89 extern int cgi_send_banner(struct client_state *csp, struct http_response *rsp,
90                                   struct map *parameters);
91
92 /* Not exactly a CGI */
93 extern struct http_response *error_response(struct client_state *csp, const char *template, int err);
94
95 /*
96  * CGI support functions
97  */
98 extern struct http_response *finish_http_response(struct http_response *rsp);
99 extern void free_http_response(struct http_response *rsp);
100
101 extern struct map *default_exports(struct client_state *csp, char *caller);
102 extern struct map *map_block_killer(struct map *map, char *name);
103 extern char *fill_template(struct client_state *csp, const char *template, struct map *exports);
104
105
106 /*
107  * Text generators
108  */
109 extern char *make_menu(const char *self);
110 extern char *dump_map(struct map *map);
111
112 #ifdef FEATURE_STATISTICS
113 extern struct map *add_stats(struct map *exports);
114 #endif /* def FEATURE_STATISTICS */
115
116
117 /*
118  * Hint: You can encode your own GIFs like that:
119  * perl -e 'while (read STDIN, $c, 1) { printf("\\%.3o,", unpack("C", $c)); }'
120  */
121
122 static const char JBGIF[] =
123    "GIF89aD\000\013\000\360\000\000\000\000\000\377\377\377!"
124    "\371\004\001\000\000\001\000,\000\000\000\000D\000\013\000"
125    "\000\002a\214\217\251\313\355\277\000\200G&K\025\316hC\037"
126    "\200\234\230Y\2309\235S\230\266\206\372J\253<\3131\253\271"
127    "\270\215\342\254\013\203\371\202\264\334P\207\332\020o\266"
128    "N\215I\332=\211\312\3513\266:\026AK)\364\370\365aobr\305"
129    "\372\003S\275\274k2\354\254z\347?\335\274x\306^9\374\276"
130    "\037Q\000\000;";
131
132 static const char BLANKGIF[] =
133    "GIF89a\001\000\001\000\200\000\000\377\377\377\000\000"
134    "\000!\371\004\001\000\000\000\000,\000\000\000\000\001"
135    "\000\001\000\000\002\002D\001\000;";
136
137
138 /* Revision control strings from this header and associated .c file */
139 extern const char cgi_rcs[];
140 extern const char cgi_h_rcs[];
141
142 #ifdef __cplusplus
143 } /* extern "C" */
144 #endif
145
146 #endif /* ndef CGI_H_INCLUDED */
147
148 /*
149   Local Variables:
150   tab-width: 3
151   end:
152 */