impl ReadReady for tcp call can_recv() insted of may_recv()

This commit is contained in:
davidskula 2024-05-07 16:07:00 +02:00
parent dc30bcfa2e
commit 87aca974b1

View File

@ -555,7 +555,7 @@ mod embedded_io_impls {
impl<'d> embedded_io_async::ReadReady for TcpSocket<'d> {
fn read_ready(&mut self) -> Result<bool, Self::Error> {
Ok(self.io.with(|s, _| s.may_recv()))
Ok(self.io.with(|s, _| s.can_recv()))
}
}
@ -587,7 +587,7 @@ mod embedded_io_impls {
impl<'d> embedded_io_async::ReadReady for TcpReader<'d> {
fn read_ready(&mut self) -> Result<bool, Self::Error> {
Ok(self.io.with(|s, _| s.may_recv()))
Ok(self.io.with(|s, _| s.can_recv()))
}
}