@@ -596,7 +596,7 @@ impl UdpSocket {
596
596
/// let socket = UdpSocket::bind("[::1]:12345").expect("couldn't bind to address");
597
597
/// socket.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
598
598
/// ```
599
- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
599
+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
600
600
pub fn set_hop_limit_v6 ( & self , limit : u8 ) -> io:: Result < ( ) > {
601
601
self . 0 . set_hop_limit_v6 ( limit)
602
602
}
@@ -615,7 +615,7 @@ impl UdpSocket {
615
615
/// socket.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
616
616
/// assert_eq!(socket.hop_limit_v6().unwrap(), 88);
617
617
/// ```
618
- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
618
+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
619
619
pub fn hop_limit_v6 ( & self ) -> io:: Result < u8 > {
620
620
self . 0 . hop_limit_v6 ( )
621
621
}
@@ -634,7 +634,7 @@ impl UdpSocket {
634
634
/// let socket = UdpSocket::bind("[::1]:12345").expect("couldn't bind to address");
635
635
/// socket.set_multicast_hop_limit_v6(88).expect("set_multicast_hop_limit_v6 call failed");
636
636
/// ```
637
- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
637
+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
638
638
pub fn set_multicast_hop_limit_v6 ( & self , limit : u8 ) -> io:: Result < ( ) > {
639
639
self . 0 . set_multicast_hop_limit_v6 ( limit)
640
640
}
@@ -653,7 +653,7 @@ impl UdpSocket {
653
653
/// socket.set_multicast_hop_limit_v6(88).expect("set_multicast_hop_limit_v6 call failed");
654
654
/// assert_eq!(socket.multicast_hop_limit_v6().unwrap(), 88);
655
655
/// ```
656
- #[ unstable( feature = "ipv6_hop_limit" , issue = "47727 " ) ]
656
+ #[ unstable( feature = "ipv6_hop_limit" , issue = "139166 " ) ]
657
657
pub fn multicast_hop_limit_v6 ( & self ) -> io:: Result < u8 > {
658
658
self . 0 . multicast_hop_limit_v6 ( )
659
659
}
0 commit comments