Subversion Repositories Tewi

Rev

Rev 315 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 315 Rev 367
Line 1... Line 1...
1
/* $Id: mod_cgi.c 315 2024-10-14 10:01:02Z nishi $ */
1
/* $Id: mod_cgi.c 367 2024-10-17 04:22:49Z nishi $ */
2
 
2
 
3
#include <tw_module.h>
3
#include <tw_module.h>
4
 
4
 
5
#include <cm_string.h>
5
#include <cm_string.h>
6
 
6
 
Line 20... Line 20...
20
int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) {
20
int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) {
21
	res->status = 403;
21
	res->status = 403;
22
	return TW_MODULE_STOP;
22
	return TW_MODULE_STOP;
23
}
23
}
24
 
24
 
25
#ifdef __NETWARE__
-
 
26
int main() { return 0; }
-
 
27
#endif
25
END_MODULE