summaryrefslogtreecommitdiff
path: root/c/wasi-http/0.2.0/large-upload/component.c
diff options
context:
space:
mode:
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.c7
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);