haraldh commented on issue #3711:
@npmccallum now it's ready for a review :)
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)) }
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)) }
haraldh commented on issue #3711:
All right.. rust-lang PR merged :partying_face:
npmccallum commented on issue #3711:
@sunfishcode Is this ready for merge?
sunfishcode commented on issue #3711:
Yes, looks good to me!
Last updated: Nov 22 2024 at 17:03 UTC