File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ impl TcpStream {
499499 /// let stream = TcpStream::connect("127.0.0.1:8080")
500500 /// .expect("Couldn't connect to the server...");
501501 /// stream.set_keepalive(true).expect("set_keepalive call failed");
502- #[ unstable( feature = "tcp_keepalive" , issue = "69774 " ) ]
502+ #[ unstable( feature = "tcp_keepalive" , issue = "155889 " ) ]
503503 pub fn set_keepalive ( & self , keepalive : bool ) -> io:: Result < ( ) > {
504504 self . 0 . set_keepalive ( keepalive)
505505 }
@@ -520,7 +520,7 @@ impl TcpStream {
520520 /// stream.set_keepalive(true).expect("set_keepalive call failed");
521521 /// assert_eq!(stream.keepalive().unwrap_or(false), true);
522522 /// ```
523- #[ unstable( feature = "tcp_keepalive" , issue = "69774 " ) ]
523+ #[ unstable( feature = "tcp_keepalive" , issue = "155889 " ) ]
524524 pub fn keepalive ( & self ) -> io:: Result < bool > {
525525 self . 0 . keepalive ( )
526526 }
You can’t perform that action at this time.
0 commit comments