Skip to content

Commit 13f4ec8

Browse files
committed
Update tracking issue to 139166
1 parent b97257f commit 13f4ec8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

library/std/src/net/tcp.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ impl TcpStream {
569569
/// .expect("Couldn't connect to the server...");
570570
/// stream.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
571571
/// ```
572-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
572+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
573573
pub fn set_hop_limit_v6(&self, limit: u8) -> io::Result<()> {
574574
self.0.set_hop_limit_v6(limit)
575575
}
@@ -589,7 +589,7 @@ impl TcpStream {
589589
/// stream.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
590590
/// assert_eq!(stream.hop_limit_v6().unwrap(), 88);
591591
/// ```
592-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
592+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
593593
pub fn hop_limit_v6(&self) -> io::Result<u8> {
594594
self.0.hop_limit_v6()
595595
}
@@ -1002,7 +1002,7 @@ impl TcpListener {
10021002
/// let listener = TcpListener::bind("[::1]:12345").unwrap();
10031003
/// listener.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
10041004
/// ```
1005-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
1005+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
10061006
pub fn set_hop_limit_v6(&self, limit: u8) -> io::Result<()> {
10071007
self.0.set_hop_limit_v6(limit)
10081008
}
@@ -1021,7 +1021,7 @@ impl TcpListener {
10211021
/// listener.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
10221022
/// assert_eq!(listener.hop_limit_v6().unwrap(), 88);
10231023
/// ```
1024-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
1024+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
10251025
pub fn hop_limit_v6(&self) -> io::Result<u8> {
10261026
self.0.hop_limit_v6()
10271027
}

library/std/src/net/udp.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)