Stream: git-wasmtime

Topic: wasmtime / issue #3711 Implement `sock_accept` and basic ...


view this post on Zulip Wasmtime GitHub notifications bot (Jan 27 2022 at 12:01):

haraldh commented on issue #3711:

@npmccallum now it's ready for a review :)

view this post on Zulip Wasmtime GitHub notifications bot (Jan 28 2022 at 12:44):

haraldh commented on issue #3711:

Changed one more thing:

             async fn get_fdflags(&self) -> Result<FdFlags, Error> {
-                Err(Error::badf())
+                let fdflags = self.0.as_filelike().get_fd_flags()?;
+                Ok(from_sysif_fdflags(fdflags))
             }

view this post on Zulip Wasmtime GitHub notifications bot (Jan 28 2022 at 12:44):

haraldh edited a comment on issue #3711:

Changed one more thing to make fd_fdstat_get() work on the sockets.

             async fn get_fdflags(&self) -> Result<FdFlags, Error> {
-                Err(Error::badf())
+                let fdflags = self.0.as_filelike().get_fd_flags()?;
+                Ok(from_sysif_fdflags(fdflags))
             }

view this post on Zulip Wasmtime GitHub notifications bot (Jan 31 2022 at 13:08):

haraldh commented on issue #3711:

All right.. rust-lang PR merged :partying_face:

view this post on Zulip Wasmtime GitHub notifications bot (Jan 31 2022 at 15:08):

npmccallum commented on issue #3711:

@sunfishcode Is this ready for merge?

view this post on Zulip Wasmtime GitHub notifications bot (Feb 01 2022 at 00:25):

sunfishcode commented on issue #3711:

Yes, looks good to me!


Last updated: Oct 23 2024 at 20:03 UTC