File tree 4 files changed +7
-7
lines changed
library/std/src/os/unix/net
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ impl SocketAddr {
215
215
/// }
216
216
/// ```
217
217
#[ 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 " ) ]
219
219
pub fn as_abstract_namespace ( & self ) -> Option < & [ u8 ] > {
220
220
if let AddressKind :: Abstract ( name) = self . address ( ) { Some ( name) } else { None }
221
221
}
@@ -272,7 +272,7 @@ impl SocketAddr {
272
272
/// }
273
273
/// ```
274
274
#[ 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 " ) ]
276
276
pub fn from_abstract_namespace ( namespace : & [ u8 ] ) -> io:: Result < SocketAddr > {
277
277
unsafe {
278
278
let mut addr: libc:: sockaddr_un = mem:: zeroed ( ) ;
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ impl UnixDatagram {
132
132
/// Ok(())
133
133
/// }
134
134
/// ```
135
- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
135
+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
136
136
pub fn bind_addr ( socket_addr : & SocketAddr ) -> io:: Result < UnixDatagram > {
137
137
unsafe {
138
138
let socket = UnixDatagram :: unbound ( ) ?;
@@ -246,7 +246,7 @@ impl UnixDatagram {
246
246
/// Ok(())
247
247
/// }
248
248
/// ```
249
- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
249
+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
250
250
pub fn connect_addr ( & self , socket_addr : & SocketAddr ) -> io:: Result < ( ) > {
251
251
unsafe {
252
252
cvt ( libc:: connect (
@@ -558,7 +558,7 @@ impl UnixDatagram {
558
558
/// Ok(())
559
559
/// }
560
560
/// ```
561
- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
561
+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
562
562
pub fn send_to_addr ( & self , buf : & [ u8 ] , socket_addr : & SocketAddr ) -> io:: Result < usize > {
563
563
unsafe {
564
564
let count = cvt ( libc:: sendto (
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ impl UnixListener {
103
103
/// Ok(())
104
104
/// }
105
105
/// ```
106
- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
106
+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
107
107
pub fn bind_addr ( socket_addr : & SocketAddr ) -> io:: Result < UnixListener > {
108
108
unsafe {
109
109
let inner = Socket :: new_raw ( libc:: AF_UNIX , libc:: SOCK_STREAM ) ?;
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ impl UnixStream {
128
128
/// Ok(())
129
129
/// }
130
130
/// ````
131
- #[ unstable( feature = "unix_socket_abstract" , issue = "42048 " ) ]
131
+ #[ unstable( feature = "unix_socket_abstract" , issue = "85410 " ) ]
132
132
pub fn connect_addr ( socket_addr : & SocketAddr ) -> io:: Result < UnixStream > {
133
133
unsafe {
134
134
let inner = Socket :: new_raw ( libc:: AF_UNIX , libc:: SOCK_STREAM ) ?;
You can’t perform that action at this time.
0 commit comments