diff options
-rw-r--r-- | src/nxt_application.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index 4efe3750..ff3ec562 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -87,6 +87,21 @@ typedef struct { } nxt_java_app_conf_t; +typedef struct { + const char *module; + + const char *request_handler; + const char *malloc_handler; + const char *free_handler; + + const char *module_init_handler; + const char *module_end_handler; + const char *request_init_handler; + const char *request_end_handler; + const char *response_end_handler; +} nxt_wasm_app_conf_t; + + struct nxt_common_app_conf_s { nxt_str_t name; nxt_str_t type; @@ -115,6 +130,7 @@ struct nxt_common_app_conf_s { nxt_perl_app_conf_t perl; nxt_ruby_app_conf_t ruby; nxt_java_app_conf_t java; + nxt_wasm_app_conf_t wasm; } u; nxt_conf_value_t *self; |