浏览代码

Change rawsocket peek to look more like recv

This fixes a borrowck error that the current implementation caused in my
project, which was somehow not picked up by the CI/CD tests.
Nicholas Cyprus 2 年之前
父节点
当前提交
512bba4b32
共有 1 个文件被更改,包括 10 次插入12 次删除
  1. 10 12
      src/socket/raw.rs

+ 10 - 12
src/socket/raw.rs

@@ -253,18 +253,16 @@ impl<'a> Socket<'a> {
     ///
     /// It returns `Err(Error::Exhausted)` if the receive buffer is empty.
     pub fn peek(&mut self) -> Result<&[u8], RecvError> {
-        self.rx_buffer
-            .peek()
-            .map_err(|_| RecvError::Exhausted)
-            .map(|((), payload_buf)| {
-                net_trace!(
-                    "raw:{}:{}: peek {} buffered octets",
-                    self.ip_version,
-                    self.ip_protocol,
-                    payload_buf.len()
-                );
-                payload_buf
-            })
+        let ((), packet_buf) = self.rx_buffer.peek().map_err(|_| RecvError::Exhausted)?;
+
+        net_trace!(
+            "raw:{}:{}: receive {} buffered octets",
+            self.ip_version,
+            self.ip_protocol,
+            packet_buf.len()
+        );
+
+        Ok(packet_buf)
     }
 
     /// Peek at a packet in the receive buffer, copy the payload into the given slice,