Subversion Repositories Tewi

Rev

Rev 314 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 314 Rev 315
Line 1... Line 1...
1
/* $Id: mod_proxy.c 314 2024-10-14 07:37:04Z nishi $ */
1
/* $Id: mod_proxy.c 315 2024-10-14 10:01:02Z 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 11... Line 11...
11
}
11
}
12
 
12
 
13
int MODULE_DECL mod_config(struct tw_tool* tools, char** argv, int argc) { return TW_CONFIG_NOTME; }
13
int MODULE_DECL mod_config(struct tw_tool* tools, char** argv, int argc) { return TW_CONFIG_NOTME; }
14
 
14
 
15
int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_PASS; }
15
int MODULE_DECL mod_request(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res) { return TW_MODULE_PASS; }
-
 
16
 
-
 
17
#ifdef __NETWARE__
-
 
18
int main() { return 0; }
-
 
19
#endif