-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: icedterminal <[email protected]>
- Loading branch information
1 parent
a441926
commit 02b7090
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule nginx
updated
2 files
+5 −0 | src/http/v2/ngx_http_v2.c | |
+7 −7 | src/stream/ngx_stream_core_module.c |
Submodule njs
updated
31 files
+50 −0 | CHANGES | |
+1 −1 | external/njs_shell.c | |
+189 −286 | nginx/ngx_http_js_module.c | |
+3 −7 | nginx/ngx_js.c | |
+16 −21 | nginx/ngx_js.h | |
+18 −23 | nginx/ngx_stream_js_module.c | |
+4 −6 | nginx/t/js.t | |
+5 −4 | nginx/t/js_headers.t | |
+1 −1 | nginx/t/js_internal_redirect.t | |
+11 −8 | nginx/t/js_subrequests.t | |
+2 −2 | src/njs.h | |
+4 −3 | src/njs_builtin.c | |
+5 −19 | src/njs_error.c | |
+4 −11 | src/njs_extern.c | |
+5 −3 | src/njs_function.c | |
+10 −41 | src/njs_generator.c | |
+1 −1 | src/njs_json.c | |
+1 −1 | src/njs_number.c | |
+28 −87 | src/njs_object.c | |
+21 −12 | src/njs_parser.c | |
+2 −22 | src/njs_regexp.c | |
+4 −82 | src/njs_string.c | |
+1 −3 | src/njs_string.h | |
+12 −29 | src/njs_typed_array.c | |
+1 −1 | src/njs_typed_array.h | |
+1 −0 | src/njs_utf8.h | |
+1 −1 | src/njs_value_conversion.h | |
+2 −8 | src/njs_vm.c | |
+16 −2 | src/qjs.c | |
+1 −1 | src/qjs.h | |
+56 −20 | src/test/njs_unit_test.c |