3 #define CGI_H_VERSION "$Id: cgi.h,v 1.4 2001/06/09 10:50:58 jongfoster Exp $"
4 /*********************************************************************
6 * File : $Source: /cvsroot/ijbswa/current/cgi.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 * IJBSWA 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.
41 * Revision 1.4 2001/06/09 10:50:58 jongfoster
42 * Changing "show URL info" handler to new style.
43 * Adding "extern" to some function prototypes.
45 * Revision 1.3 2001/06/03 19:12:16 oes
46 * introduced new cgi handling
48 * No revisions before 1.3
50 **********************************************************************/
60 * Dispatch & parameter parsing functions
62 extern struct http_response *dispatch_cgi(struct client_state *csp);
63 extern struct map *parse_cgi_parameters(char *argstring);
68 extern int cgi_default(struct client_state *csp, struct http_response *rsp,
69 struct map *parameters);
70 extern int cgi_show_status(struct client_state *csp, struct http_response *rsp,
71 struct map *parameters);
72 extern int cgi_show_url_info(struct client_state *csp, struct http_response *rsp,
\r
73 struct map *parameters);
74 extern int cgi_send_banner(struct client_state *csp, struct http_response *rsp,
75 struct map *parameters);
77 /* Not exactly a CGI */
78 extern struct http_response *error_response(struct client_state *csp, const char *template, int err);
81 * CGI support functions
83 extern struct http_response *finish_http_response(struct http_response *rsp);
84 extern void free_http_response(struct http_response *rsp);
86 extern struct map *default_exports(struct client_state *csp, char *caller);
87 extern struct map *map_block_killer(struct map *map, char *name);
88 extern char *fill_template(struct client_state *csp, const char *template, struct map *exports);
94 extern char *make_menu(const char *self);
95 extern char *dump_map(struct map *map);
98 extern struct map *add_stats(struct map *exports);
99 #endif /* def STATISTICS */
103 * Hint: You can encode your own GIFs like that:
104 * perl -e 'while (read STDIN, $c, 1) { printf("\\%.3o,", unpack("C", $c)); }'
107 static const char JBGIF[] =
108 "GIF89aD\000\013\000\360\000\000\000\000\000\377\377\377!"
109 "\371\004\001\000\000\001\000,\000\000\000\000D\000\013\000"
110 "\000\002a\214\217\251\313\355\277\000\200G&K\025\316hC\037"
111 "\200\234\230Y\2309\235S\230\266\206\372J\253<\3131\253\271"
112 "\270\215\342\254\013\203\371\202\264\334P\207\332\020o\266"
113 "N\215I\332=\211\312\3513\266:\026AK)\364\370\365aobr\305"
114 "\372\003S\275\274k2\354\254z\347?\335\274x\306^9\374\276"
117 static const char BLANKGIF[] =
118 "GIF89a\001\000\001\000\200\000\000\377\377\377\000\000"
119 "\000!\371\004\001\000\000\000\000,\000\000\000\000\001"
120 "\000\001\000\000\002\002D\001\000;";
123 /* Revision control strings from this header and associated .c file */
124 extern const char cgi_rcs[];
125 extern const char cgi_h_rcs[];
131 #endif /* ndef _CGI_H */