File tree 1 file changed +2
-2
lines changed
library/std/src/os/net/linux_ext
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ pub trait TcpStreamExt: Sealed {
118
118
/// let stream = TcpStream::connect("127.0.0.1:8080")
119
119
/// .expect("Couldn't connect to the server...");
120
120
/// stream.set_syncnt(3).expect("set_setcnt call failed");
121
- #[ unstable( feature = "tcp_syncnt" , issue = "none " ) ]
121
+ #[ unstable( feature = "tcp_syncnt" , issue = "123112 " ) ]
122
122
fn set_syncnt ( & self , count : u32 ) -> io:: Result < ( ) > ;
123
123
124
124
/// Get the number of `SYN` packets to send before giving up establishing a connection.
@@ -137,7 +137,7 @@ pub trait TcpStreamExt: Sealed {
137
137
/// stream.set_syncnt(3).expect("set_syncnt call failed");
138
138
/// assert_eq!(stream.syncnt().unwrap_or(0), 3);
139
139
/// ```
140
- #[ unstable( feature = "tcp_syncnt" , issue = "none " ) ]
140
+ #[ unstable( feature = "tcp_syncnt" , issue = "123112 " ) ]
141
141
fn syncnt ( & self ) -> io:: Result < u32 > ;
142
142
}
143
143
You can’t perform that action at this time.
0 commit comments