You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many functions need to implemented for TcpListener and TcpStream.
We need to implement as many as possible, so that wasmedge_wasi_socket can be a substitute of std version.
fnlocal_addr(&self) -> io::Result<SocketAddr>;// okfntry_clone(&self) -> io::Result<TcpListener>;// okfnset_ttl(&self,ttl:u32) -> io::Result<()>;// not supported now,but I think it is not a core feature. I will implement an empty api.fnttl(&self) -> io::Result<u32>;// fntake_error(&self) -> io::Result<Option<io::Error>>;// okfnset_nonblocking(&self,nonblocking:bool) -> io::Result<()>;// ok
There are many functions need to implemented for TcpListener and TcpStream.
We need to implement as many as possible, so that
wasmedge_wasi_socket
can be a substitute of std version.Here is the list of them:
TcpListener:
TcpStream:
The text was updated successfully, but these errors were encountered: