Skip to content

Commit 24d53d3

Browse files
authored
feat(server): add poll_peek to AddrStream (#2127)
1 parent dd02254 commit 24d53d3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/server/tcp.rs

+11
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,17 @@ mod addr_stream {
223223
pub fn into_inner(self) -> TcpStream {
224224
self.inner
225225
}
226+
227+
/// Attempt to receive data on the socket, without removing that data
228+
/// from the queue, registering the current task for wakeup if data is
229+
/// not yet available.
230+
pub fn poll_peek(
231+
&mut self,
232+
cx: &mut task::Context<'_>,
233+
buf: &mut [u8],
234+
) -> Poll<io::Result<usize>> {
235+
self.inner.poll_peek(cx, buf)
236+
}
226237
}
227238

228239
impl AsyncRead for AddrStream {

0 commit comments

Comments
 (0)