diff options
| author | Ralf Jung <post@ralfj.de> | 2020-09-20 15:52:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-20 15:52:06 +0200 |
| commit | dfae12fa0bc124c61329748c820ed74ac3833128 (patch) | |
| tree | eff2cd631f23f554fb07abc0a0dcd3db04259a82 | |
| parent | 7ff17c13bc26e2cf20beea35a5757f8c548ac5f2 (diff) | |
| parent | a60f97849b240c69052e58ada45cff5515fb66b2 (diff) | |
| download | rust-dfae12fa0bc124c61329748c820ed74ac3833128.tar.gz rust-dfae12fa0bc124c61329748c820ed74ac3833128.zip | |
Rollup merge of #76924 - rijenkii:patch-1, r=oli-obk
Add tracking issue for feature(unix_socket_peek) Feature was added in #73761
| -rw-r--r-- | library/std/src/sys/unix/ext/net.rs | 6 |
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) } |
