Skip to content

Commit 17bd15d

Browse files
committed
tracking issue
1 parent ae06102 commit 17bd15d

File tree

1 file changed

+2
-2
lines changed
  • library/std/src/os/net/linux_ext

1 file changed

+2
-2
lines changed

library/std/src/os/net/linux_ext/tcp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pub trait TcpStreamExt: Sealed {
118118
/// let stream = TcpStream::connect("127.0.0.1:8080")
119119
/// .expect("Couldn't connect to the server...");
120120
/// stream.set_syncnt(3).expect("set_setcnt call failed");
121-
#[unstable(feature = "tcp_syncnt", issue = "none")]
121+
#[unstable(feature = "tcp_syncnt", issue = "123112")]
122122
fn set_syncnt(&self, count: u32) -> io::Result<()>;
123123

124124
/// Get the number of `SYN` packets to send before giving up establishing a connection.
@@ -137,7 +137,7 @@ pub trait TcpStreamExt: Sealed {
137137
/// stream.set_syncnt(3).expect("set_syncnt call failed");
138138
/// assert_eq!(stream.syncnt().unwrap_or(0), 3);
139139
/// ```
140-
#[unstable(feature = "tcp_syncnt", issue = "none")]
140+
#[unstable(feature = "tcp_syncnt", issue = "123112")]
141141
fn syncnt(&self) -> io::Result<u32>;
142142
}
143143

0 commit comments

Comments
 (0)