Skip to content

Commit 5ace46a

Browse files
committed
Update tracking issue to 139166
1 parent 03aef02 commit 5ace46a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: library/std/src/net/tcp.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ impl TcpStream {
563563
/// .expect("Couldn't connect to the server...");
564564
/// stream.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
565565
/// ```
566-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
566+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
567567
pub fn set_hop_limit_v6(&self, limit: u8) -> io::Result<()> {
568568
self.0.set_hop_limit_v6(limit)
569569
}
@@ -583,7 +583,7 @@ impl TcpStream {
583583
/// stream.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
584584
/// assert_eq!(stream.hop_limit_v6().unwrap(), 88);
585585
/// ```
586-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
586+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
587587
pub fn hop_limit_v6(&self) -> io::Result<u8> {
588588
self.0.hop_limit_v6()
589589
}
@@ -996,7 +996,7 @@ impl TcpListener {
996996
/// let listener = TcpListener::bind("[::1]:12345").unwrap();
997997
/// listener.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
998998
/// ```
999-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
999+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
10001000
pub fn set_hop_limit_v6(&self, limit: u8) -> io::Result<()> {
10011001
self.0.set_hop_limit_v6(limit)
10021002
}
@@ -1015,7 +1015,7 @@ impl TcpListener {
10151015
/// listener.set_hop_limit_v6(88).expect("set_hop_limit_v6 call failed");
10161016
/// assert_eq!(listener.hop_limit_v6().unwrap(), 88);
10171017
/// ```
1018-
#[unstable(feature = "ipv6_hop_limit", issue = "47727")]
1018+
#[unstable(feature = "ipv6_hop_limit", issue = "139166")]
10191019
pub fn hop_limit_v6(&self) -> io::Result<u8> {
10201020
self.0.hop_limit_v6()
10211021
}

Diff for: library/std/src/net/udp.rs

+4-4
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)