@@ -596,7 +596,7 @@ impl UdpSocket {
596596 /// let socket = UdpSocket::bind("[::1]:12345").expect("couldn't bind to address");
597597 /// socket.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
598598 /// ```
599- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
599+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
600600 pub fn set_hop_limit_v6 ( & self , limit : u8 ) -> io:: Result < ( ) > {
601601 self . 0 . set_hop_limit_v6 ( limit)
602602 }
@@ -615,7 +615,7 @@ impl UdpSocket {
615615 /// socket.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
616616 /// assert_eq!(socket.hop_limit_v6().unwrap(), 88);
617617 /// ```
618- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
618+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
619619 pub fn hop_limit_v6 ( & self ) -> io:: Result < u8 > {
620620 self . 0 . hop_limit_v6 ( )
621621 }
@@ -634,7 +634,7 @@ impl UdpSocket {
634634 /// let socket = UdpSocket::bind("[::1]:12345").expect("couldn't bind to address");
635635 /// socket.set_multicast_hop_limit_v6(88).expect("set_multicast_hop_limit_v6 call failed");
636636 /// ```
637- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
637+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
638638 pub fn set_multicast_hop_limit_v6 ( & self , limit : u8 ) -> io:: Result < ( ) > {
639639 self . 0 . set_multicast_hop_limit_v6 ( limit)
640640 }
@@ -653,7 +653,7 @@ impl UdpSocket {
653653 /// socket.set_multicast_hop_limit_v6(88).expect("set_multicast_hop_limit_v6 call failed");
654654 /// assert_eq!(socket.multicast_hop_limit_v6().unwrap(), 88);
655655 /// ```
656- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
656+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
657657 pub fn multicast_hop_limit_v6 ( & self ) -> io:: Result < u8 > {
658658 self . 0 . multicast_hop_limit_v6 ( )
659659 }
0 commit comments