Skip to content

Commit a60f978

Browse files
authored
Add tracking issue for feature(unix_socket_peek)
1 parent 8e9d5db commit a60f978

File tree

1 file changed

+3
-3
lines changed
  • library/std/src/sys/unix/ext

1 file changed

+3
-3
lines changed

library/std/src/sys/unix/ext/net.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ impl UnixStream {
667667
/// Ok(())
668668
/// }
669669
/// ```
670-
#[unstable(feature = "unix_socket_peek", issue = "none")]
670+
#[unstable(feature = "unix_socket_peek", issue = "76923")]
671671
pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
672672
self.0.peek(buf)
673673
}
@@ -1708,7 +1708,7 @@ impl UnixDatagram {
17081708
/// Ok(())
17091709
/// }
17101710
/// ```
1711-
#[unstable(feature = "unix_socket_peek", issue = "none")]
1711+
#[unstable(feature = "unix_socket_peek", issue = "76923")]
17121712
pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
17131713
self.0.peek(buf)
17141714
}
@@ -1740,7 +1740,7 @@ impl UnixDatagram {
17401740
/// Ok(())
17411741
/// }
17421742
/// ```
1743-
#[unstable(feature = "unix_socket_peek", issue = "none")]
1743+
#[unstable(feature = "unix_socket_peek", issue = "76923")]
17441744
pub fn peek_from(&self, buf: &mut [u8]) -> io::Result<(usize, SocketAddr)> {
17451745
self.recv_from_flags(buf, libc::MSG_PEEK)
17461746
}

0 commit comments

Comments
 (0)