tewi/Module/mod_cgi.c
Nishi 32962dcdd3 put diff
git-svn-id: file:///raid/svn-personal/tewi/trunk@41 8739d7e6-ffea-ec47-b151-bdff447c6205
2024-09-18 08:18:41 +00:00

24 lines
536 B
C

/* $Id$ */
#include "../Server/tw_module.h"
#include <cm_string.h>
int mod_init(struct tw_config* config, struct tw_tool* tools) {
tools->log("CGI", "Initializing CGI module");
tools->add_version("CGI/1.1");
return 0;
}
int mod_config(struct tw_tool* tools, char** argv, int argc) {
if(cm_strcaseequ(argv[0], "AllowCGI")) {
return TW_CONFIG_PARSED;
}
return TW_CONFIG_NOTME;
}
int mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) {
res->status = 403;
return TW_MODULE_STOP;
}