ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/tewi/Module/mod_cgi.c
Revision: 1.1
Committed: Thu Oct 17 09:53:38 2024 UTC (4 weeks ago) by nishi
Content type: text/x-c
Branch: MAIN
CVS Tags: v2_05A, v2_05, HEAD
Log Message:
update

File Contents

# Content
1 /* $Id: mod_cgi.c 367 2024-10-17 04:22:49Z nishi $ */
2
3 #include <tw_module.h>
4
5 #include <cm_string.h>
6
7 int MODULE_DECL mod_init(struct tw_config* config, struct tw_tool* tools) {
8 tools->log("CGI", "Initializing CGI module");
9 tools->add_version("CGI/1.1");
10 return 0;
11 }
12
13 int MODULE_DECL mod_config(struct tw_tool* tools, char** argv, int argc) {
14 if(cm_strcaseequ(argv[0], "AllowCGI")) {
15 return TW_CONFIG_PARSED;
16 }
17 return TW_CONFIG_NOTME;
18 }
19
20 int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) {
21 res->status = 403;
22 return TW_MODULE_STOP;
23 }
24
25 END_MODULE