tokio-rs / tokio-uring

An io_uring backed runtime for Rust
MIT License
1.13k stars 122 forks source link

Implement FromRawFd, AsRawFd, and from_std for TcpListener. #262

Closed Icelk closed 1 year ago

Icelk commented 1 year ago

This enables socket configuration for the listener.

FrankReh commented 1 year ago

@Icelk You can use cargo test and cargo doc --no-deps to get most tests run locally. Sometimes the failure in CI will be because the CI kernel is 5.15 and not 6.0 or 6.1 but maybe that's not the current case.

Icelk commented 1 year ago

Fixed the test now. Sorry for the CI failure.

FrankReh commented 1 year ago

Thanks!

Icelk commented 1 year ago

Thank you! You've made it very easy to contribute.