mirror of
https://github.com/async-rs/async-std.git
synced 2025-11-08 20:46:43 +00:00
* Fix uds listener hanging on accept UDS listener was hanging because the accept method would return `Poll::Pending` without registering the task to be awoken in the case when underlying unix listener returns a WouldBlock that gets converted to None. This is a hacky fix for this case. Should fix #248 * Test simulating uds ping-pong server/client This one should reproduce #248 bug to prevent further regressions. * Code review fixes |
||
|---|---|---|
| .. | ||
| addr.rs | ||
| block_on.rs | ||
| io_timeout.rs | ||
| mutex.rs | ||
| rwlock.rs | ||
| task_local.rs | ||
| tcp.rs | ||
| udp.rs | ||
| uds.rs | ||