summaryrefslogtreecommitdiff
path: root/c/wasi-http/echo-request/Makefile (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-02-13wasi-http/echo-request: Remove itAndrew Clayton1-31/+0
This is superseded by the wasi-http 0.2.0 version. Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
2024-02-12wasi-http/echo-request: Build using wasm-tools from gitAndrew Clayton1-1/+1
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
2023-11-28Add a wasi-http echo-request component in CAndrew Clayton1-0/+31
This adds a wasi-http version of luw-echo-request.c[0] This works under the wasmtime v15 CLI serve command. e.g $ ~/src/c/wasm/wasmtime-v15.0.0-x86_64-linux/wasmtime serve c/wasi-http/echo-request/component.wasm Serving HTTP on http://0.0.0.0:8080/ $ curl localhost:8080/hello *** Welcome to WebAssembly with wasi-http / C *** [Request Info] REQUEST_PATH = /hello METHOD = GET QUERY = [Request Headers] host = localhost:8080 user-agent = curl/8.2.1 accept = */* [0]: <https://github.com/nginx/unit-wasm/blob/main/examples/c/luw-echo-request.c> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>