Wait for waker when no data is available on UDP socket.
This commit is contained in:
parent
e9a161b462
commit
46b437dea0
@ -94,8 +94,7 @@ impl<'a> UdpSocket<'a> {
|
|||||||
Ok(x) => Poll::Ready(Ok(x)),
|
Ok(x) => Poll::Ready(Ok(x)),
|
||||||
// No data ready
|
// No data ready
|
||||||
Err(udp::RecvError::Exhausted) => {
|
Err(udp::RecvError::Exhausted) => {
|
||||||
//s.register_recv_waker(cx.waker());
|
s.register_recv_waker(cx.waker());
|
||||||
cx.waker().wake_by_ref();
|
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user