diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-09 17:09:30 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-10 16:58:48 +0100 |
commit | 52b334acd1a5678ee111d6db73dc02675c21a277 (patch) | |
tree | d971022860b86952a730857e5da9bd6315e9508e /src/nxt_application.h | |
parent | 46573e6993552e0ecbcbcd6f4e191b4b2e3f5dc9 (diff) | |
download | unit-52b334acd1a5678ee111d6db73dc02675c21a277.tar.gz unit-52b334acd1a5678ee111d6db73dc02675c21a277.tar.bz2 |
Wasm: Register a new WebAssembly language module type.
This is the first patch in adding WebAssembly language module support.
This just adds a new NXT_APP_WASM type, required by subsequent commits.
Reviewed-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src/nxt_application.h')
-rw-r--r-- | src/nxt_application.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index 2675e6a0..4efe3750 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -21,6 +21,7 @@ typedef enum { NXT_APP_PERL, NXT_APP_RUBY, NXT_APP_JAVA, + NXT_APP_WASM, NXT_APP_UNKNOWN, } nxt_app_type_t; |