about summary refs log tree commit diff
path: root/library/std/src/sys/unix/ext/net.rs
diff options
context:
space:
mode:
authorrijenkii <5338332+rijenkii@users.noreply.github.com>2020-09-19 21:55:01 +0700
committerGitHub <noreply@github.com>2020-09-19 21:55:01 +0700
commita60f97849b240c69052e58ada45cff5515fb66b2 (patch)
tree6ad88cd001476e23169c17a33c13afe259fc7196 /library/std/src/sys/unix/ext/net.rs
parent8e9d5db8392c44a2e94008168fa3506ecddaa357 (diff)
downloadrust-a60f97849b240c69052e58ada45cff5515fb66b2.tar.gz
rust-a60f97849b240c69052e58ada45cff5515fb66b2.zip
Add tracking issue for feature(unix_socket_peek)
Diffstat (limited to 'library/std/src/sys/unix/ext/net.rs')
-rw-r--r--library/std/src/sys/unix/ext/net.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/sys/unix/ext/net.rs b/library/std/src/sys/unix/ext/net.rs
index f3da8f9f584..3d2366554b5 100644
--- a/library/std/src/sys/unix/ext/net.rs
+++ b/library/std/src/sys/unix/ext/net.rs
@@ -667,7 +667,7 @@ impl UnixStream {
     ///     Ok(())
     /// }
     /// ```
-    #[unstable(feature = "unix_socket_peek", issue = "none")]
+    #[unstable(feature = "unix_socket_peek", issue = "76923")]
     pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
         self.0.peek(buf)
     }
@@ -1708,7 +1708,7 @@ impl UnixDatagram {
     ///     Ok(())
     /// }
     /// ```
-    #[unstable(feature = "unix_socket_peek", issue = "none")]
+    #[unstable(feature = "unix_socket_peek", issue = "76923")]
     pub fn peek(&self, buf: &mut [u8]) -> io::Result<usize> {
         self.0.peek(buf)
     }
@@ -1740,7 +1740,7 @@ impl UnixDatagram {
     ///     Ok(())
     /// }
     /// ```
-    #[unstable(feature = "unix_socket_peek", issue = "none")]
+    #[unstable(feature = "unix_socket_peek", issue = "76923")]
     pub fn peek_from(&self, buf: &mut [u8]) -> io::Result<(usize, SocketAddr)> {
         self.recv_from_flags(buf, libc::MSG_PEEK)
     }