File tree 1 file changed +3
-3
lines changed
library/std/src/sys/unix/ext
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -667,7 +667,7 @@ impl UnixStream {
667
667
/// Ok(())
668
668
/// }
669
669
/// ```
670
- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
670
+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
671
671
pub fn peek ( & self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
672
672
self . 0 . peek ( buf)
673
673
}
@@ -1708,7 +1708,7 @@ impl UnixDatagram {
1708
1708
/// Ok(())
1709
1709
/// }
1710
1710
/// ```
1711
- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
1711
+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
1712
1712
pub fn peek ( & self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
1713
1713
self . 0 . peek ( buf)
1714
1714
}
@@ -1740,7 +1740,7 @@ impl UnixDatagram {
1740
1740
/// Ok(())
1741
1741
/// }
1742
1742
/// ```
1743
- #[ unstable( feature = "unix_socket_peek" , issue = "none " ) ]
1743
+ #[ unstable( feature = "unix_socket_peek" , issue = "76923 " ) ]
1744
1744
pub fn peek_from ( & self , buf : & mut [ u8 ] ) -> io:: Result < ( usize , SocketAddr ) > {
1745
1745
self . recv_from_flags ( buf, libc:: MSG_PEEK )
1746
1746
}
You can’t perform that action at this time.
0 commit comments