Closed MediosZ closed 2 years ago
In mio, we can do this:
poll.registry().register( &mut connection, token, Interest::READABLE.add(Interest::WRITABLE), )?;
It creates READ and WRITE subscriptions on the same fd. And this does't work in wasmedge_wasi_socket.
wasmedge_wasi_socket
I find it's a problem with WASI, so I am closing this.
In mio, we can do this:
It creates READ and WRITE subscriptions on the same fd. And this does't work in
wasmedge_wasi_socket
.