File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
library/std/src/os/unix/net Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 ) ?;
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ impl UnixStream {
126126 /// Ok(())
127127 /// }
128128 /// ````
129- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
129+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
130130 pub fn connect_addr ( socket_addr : & SocketAddr ) -> io:: Result < UnixStream > {
131131 unsafe {
132132 let inner = Socket :: new_raw ( libc:: AF_UNIX , libc:: SOCK_STREAM ) ?;
You can’t perform that action at this time.
0 commit comments