From 6c085cfaf4f2244af72d1f98517e2908129120c5 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Wed, 12 Apr 2023 15:53:29 +0100 Subject: Add a skeleton language module. Module is called 'skel'. Configure with $ ./configure skel Signed-off-by: Andrew Clayton --- src/nxt_application.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nxt_application.c') 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; -- cgit