Line | |
---|
1 | /* $Id: tw_module.h 20 2024-09-14 09:59:15Z nishi $ */
|
---|
2 |
|
---|
3 | #ifndef __TW_MODULE_H__
|
---|
4 | #define __TW_MODULE_H__
|
---|
5 |
|
---|
6 | #include "tw_config.h"
|
---|
7 | #include "tw_http.h"
|
---|
8 |
|
---|
9 | struct tw_tool {
|
---|
10 | void (*log)(const char* name, const char* log, ...);
|
---|
11 | void (*add_version)(const char* string);
|
---|
12 | };
|
---|
13 |
|
---|
14 | enum TW_MODULE_RETURN {
|
---|
15 | _TW_MODULE_PASS = 0, /* Pass to the next module. */
|
---|
16 | _TW_MODULE_STOP, /* Do not pass to the next module. */
|
---|
17 | _TW_MODULE_ERROR /* Error, and do not pass to the next module. */
|
---|
18 | };
|
---|
19 |
|
---|
20 | #define TW_MODULE_PASS _TW_MODULE_PASS
|
---|
21 | #define TW_MODULE_STOP _TW_MODULE_STOP
|
---|
22 | #define TW_MODULE_ERROR(x) (_TW_MODULE_ERROR | ((x) << 8))
|
---|
23 |
|
---|
24 | typedef int (*tw_mod_init_t)(struct tw_config* config, struct tw_tool* tools);
|
---|
25 | typedef int (*tw_mod_request_t)(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res);
|
---|
26 |
|
---|
27 | void* tw_module_load(const char* path);
|
---|
28 | void* tw_module_symbol(void* mod, const char* sym);
|
---|
29 | void tw_init_tools(struct tw_tool* tools);
|
---|
30 | int tw_module_init(void* mod);
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.