diff options
| author | Andrew Clayton <a.clayton@nginx.com> | 2023-04-12 15:53:29 +0100 |
|---|---|---|
| committer | Andrew Clayton <a.clayton@nginx.com> | 2024-11-15 00:52:38 +0000 |
| commit | 6c085cfaf4f2244af72d1f98517e2908129120c5 (patch) | |
| tree | afce4fb966b10986ba1b5817bc2c1bf69a5ace66 /src/nxt_application.c | |
| parent | a35517901fb3c7d524739fc4fcf9e531d6404487 (diff) | |
| download | unit-skel_lm.tar.gz unit-skel_lm.tar.bz2 | |
Add a skeleton language module.skel_lm
Module is called 'skel'. Configure with
$ ./configure skel
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src/nxt_application.c')
| -rw-r--r-- | src/nxt_application.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nxt_application.c b/src/nxt_application.c index 629aa11c..3c423033 100644 --- a/src/nxt_application.c +++ b/src/nxt_application.c @@ -1114,6 +1114,9 @@ nxt_app_parse_type(u_char *p, size_t length) } else if (nxt_str_eq(&str, "wasm", 4)) { return NXT_APP_WASM; + + } else if (nxt_str_eq(&str, "skel", 4)) { + return NXT_APP_SKEL; } return NXT_APP_UNKNOWN; |
