Skip to content

Commit 565e349

Browse files
committed
Update tracking issue in stability refs
1 parent 1c21431 commit 565e349

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

library/std/src/os/unix/net/addr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl SocketAddr {
215215
/// }
216216
/// ```
217217
#[cfg(any(doc, target_os = "android", target_os = "linux",))]
218-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
218+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
219219
pub fn as_abstract_namespace(&self) -> Option<&[u8]> {
220220
if let AddressKind::Abstract(name) = self.address() { Some(name) } else { None }
221221
}
@@ -272,7 +272,7 @@ impl SocketAddr {
272272
/// }
273273
/// ```
274274
#[cfg(any(doc, target_os = "android", target_os = "linux",))]
275-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
275+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
276276
pub fn from_abstract_namespace(namespace: &[u8]) -> io::Result<SocketAddr> {
277277
unsafe {
278278
let mut addr: libc::sockaddr_un = mem::zeroed();

library/std/src/os/unix/net/datagram.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl UnixDatagram {
132132
/// Ok(())
133133
/// }
134134
/// ```
135-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
135+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
136136
pub fn bind_addr(socket_addr: &SocketAddr) -> io::Result<UnixDatagram> {
137137
unsafe {
138138
let socket = UnixDatagram::unbound()?;
@@ -246,7 +246,7 @@ impl UnixDatagram {
246246
/// Ok(())
247247
/// }
248248
/// ```
249-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
249+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
250250
pub fn connect_addr(&self, socket_addr: &SocketAddr) -> io::Result<()> {
251251
unsafe {
252252
cvt(libc::connect(
@@ -558,7 +558,7 @@ impl UnixDatagram {
558558
/// Ok(())
559559
/// }
560560
/// ```
561-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
561+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
562562
pub fn send_to_addr(&self, buf: &[u8], socket_addr: &SocketAddr) -> io::Result<usize> {
563563
unsafe {
564564
let count = cvt(libc::sendto(

library/std/src/os/unix/net/listener.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl UnixListener {
103103
/// Ok(())
104104
/// }
105105
/// ```
106-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
106+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
107107
pub fn bind_addr(socket_addr: &SocketAddr) -> io::Result<UnixListener> {
108108
unsafe {
109109
let inner = Socket::new_raw(libc::AF_UNIX, libc::SOCK_STREAM)?;

library/std/src/os/unix/net/stream.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl UnixStream {
128128
/// Ok(())
129129
/// }
130130
/// ````
131-
#[unstable(feature = "unix_socket_abstract", issue = "42048")]
131+
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
132132
pub fn connect_addr(socket_addr: &SocketAddr) -> io::Result<UnixStream> {
133133
unsafe {
134134
let inner = Socket::new_raw(libc::AF_UNIX, libc::SOCK_STREAM)?;

0 commit comments

Comments
 (0)