Results 271 comments of Thomas de Zeeuw

> > I couldn't find the `SIO_BSP_*` constants although the linked issue is closed, have those been added? > > Which one in particular? I see a bunch have been...

I'm not sure. Currently Mio just wraps std's `UdpSocket`, so maybe it worth it to open an issue with Rust? I think we'll mostly want to do the same thing...

> It is valid to create an UdpSocket with port `0` when opening a connection. For most cases receiving a packet with source port `0` is a buggy or an...

@Noah-Kennedy do you have time to add tests?

Ping @Noah-Kennedy.

@Noah-Kennedy it's stabilised in https://github.com/rust-lang/rust/pull/94356.

I think the support is still unstable, but it's should come at some point: https://doc.rust-lang.org/std/os/unix/net/struct.SocketAddr.html#method.from_abstract_namespace. Maybe we can create a pr to stabilise it.

We haven't defined our policy properly yet (that's https://github.com/tokio-rs/mio/issues/853), but I would like to know at least the following before we can even start with the code. 1. Which platforms/OSs...

@Janrupf > ### 1. Which platforms are going to use this? > > Any Unix (POSIX?) like platform with `poll` support but no `epoll` - in general, this question is...