Dave Bakker
Dave Bakker
The documentation of [`tcp-socket::listen`](https://github.com/WebAssembly/WASI/blob/7e643518a4bf9767ca799d7aa776c560a2fc0351/proposals/sockets/wit-0.3.0-draft/types.wit#L229-L230) mentions: > If the socket is not already explicitly bound, this function will implicitly bind the socket to a random free port. I've recently added [tests...
Currently, WASI does not describe any way for a CLI guest to receive the Ctrl+C signal (`SIGINT` on Unix). This signal is commonly used to request graceful shutdown, giving the...
Given WASI's CloudABI heritage I understand why preopens currently are the way that they are. But they feel like something that should be just an host implementation detail. Ie. could...
wasi-sockets requires a `network` handle to be passed to operations that talk with the outside world. Example: `tcp::connect` ```wit /// An opaque resource that represents access to (a subset of)...