diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2024-09-05 21:25:06 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2024-09-06 01:35:27 +0100 |
commit | c1c220bf0599166a41681dc3824c7be38631c0e0 (patch) | |
tree | 009136d2c6e2e601bcb6a5eeec866204f700293c /c/wasi-http/0.2.0/large-upload/component.c | |
parent | 7d0de8d48e202e32bb2879f706a47a3477cd8e2e (diff) | |
download | project_blackbird-c1c220bf0599166a41681dc3824c7be38631c0e0.tar.gz project_blackbird-c1c220bf0599166a41681dc3824c7be38631c0e0.tar.bz2 |
w-h/0.2.0/large-upload: Update for wasmtime v24.0.0
Same issue as commit 92ffa9a ("w-h/0.2.0/echo-request: Update for
wasmtime v24.0.0")
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'c/wasi-http/0.2.0/large-upload/component.c')
-rw-r--r-- | c/wasi-http/0.2.0/large-upload/component.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/c/wasi-http/0.2.0/large-upload/component.c b/c/wasi-http/0.2.0/large-upload/component.c index 148100d..1030b01 100644 --- a/c/wasi-http/0.2.0/large-upload/component.c +++ b/c/wasi-http/0.2.0/large-upload/component.c @@ -30,6 +30,7 @@ void exports_wasi_http_incoming_handler_handle( wasi_http_types_borrow_incoming_request_t b_req; wasi_http_types_own_incoming_body_t r_body; wasi_http_types_borrow_incoming_body_t b_r_body; + wasi_http_types_own_outgoing_response_t resp; wasi_http_types_result_own_outgoing_response_error_code_t rerr = { }; wasi_http_types_own_fields_t hdrs; wasi_http_types_borrow_fields_t b_hdrs; @@ -44,6 +45,10 @@ void exports_wasi_http_incoming_handler_handle( bool ok; int fd; + fields = wasi_http_types_constructor_fields(); + resp = wasi_http_types_constructor_outgoing_response(fields); + rerr.val.ok = resp; + fd = open("/var/tmp/wasm-wasi-component-upload.dat", O_CREAT|O_TRUNC|O_WRONLY, 0666); @@ -82,8 +87,6 @@ void exports_wasi_http_incoming_handler_handle( total_bytes_wrote += data.len; } while (total_bytes_wrote < content_len); - fields = wasi_http_types_constructor_fields(); - wasi_http_types_constructor_outgoing_response(fields); wasi_http_types_static_response_outparam_set(response_out, &rerr); close(fd); |