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
Unfortunatly, the integration into std was declined due to MacOS not supporting SOCK_SEQPACKET. I'm considering assembling a PR to add SOCK_SEQPACKET support to mio-uds (along the lines of the std PR), however I'd like to know if such a PR would be welcome in mio-uds, or if it would be declined for the same reason -- @alexcrichton?
It's not a question whether Rust (including async) should support SOCK_SEQPACKET or not; it should. The question is how: in this crate, in std, in separate crate, gated by Cargo feature...
There should be a mode of
UnixStream
/UnixListener
on Linux where it usesSOCK_SEQPACKET
instead ofSOCK_STREAM
.The text was updated successfully, but these errors were encountered: