Rev | Line | |
---|
[17] | 1 | /* $Id: tw_module.h 18 2024-09-14 00:42:40Z nishi $ */
|
---|
| 2 |
|
---|
| 3 | #ifndef __TW_MODULE_H__
|
---|
| 4 | #define __TW_MODULE_H__
|
---|
| 5 |
|
---|
| 6 | #include "tw_config.h"
|
---|
[18] | 7 | #include "tw_http.h"
|
---|
[17] | 8 |
|
---|
| 9 | struct tw_tool {
|
---|
| 10 | void (*log)(const char* name, const char* log, ...);
|
---|
[18] | 11 | void (*add_version)(const char* string);
|
---|
[17] | 12 | };
|
---|
| 13 |
|
---|
[18] | 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 |
|
---|
[17] | 20 | typedef int (*tw_mod_init_t)(struct tw_config* config, struct tw_tool* tools);
|
---|
[18] | 21 | typedef int (*tw_mod_request_t)(struct tw_tool* tools, struct tw_http_request* req, struct tw_http_response* res);
|
---|
[17] | 22 |
|
---|
| 23 | void* tw_module_load(const char* path);
|
---|
| 24 | void* tw_module_symbol(void* mod, const char* sym);
|
---|
| 25 | void tw_init_tools(struct tw_tool* tools);
|
---|
| 26 | int tw_module_init(void* mod);
|
---|
| 27 |
|
---|
| 28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.