@@ -57,7 +57,7 @@ impl UnixListener {
57
57
/// Default "backlog" for [`UnixListener::bind`] and
58
58
/// [`UnixListener::bind_addr`]. See [`UnixListener::bind_with_backlog`]
59
59
/// for an explanation of backlog values.
60
- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
60
+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
61
61
pub const DEFAULT_BACKLOG : usize = 128 ;
62
62
63
63
/// Creates a new `UnixListener` bound to the specified socket.
@@ -115,7 +115,7 @@ impl UnixListener {
115
115
/// The specified backlog may be larger than supported by the underlying
116
116
/// system. In this case an [`io::Error`] with
117
117
/// [`io::ErrorKind::InvalidData`] will be returned.
118
- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
118
+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
119
119
pub fn bind_with_backlog < P : AsRef < Path > > ( path : P , backlog : usize ) -> io:: Result < UnixListener > {
120
120
unsafe {
121
121
let backlog = backlog
@@ -195,7 +195,7 @@ impl UnixListener {
195
195
/// }
196
196
/// ```
197
197
//#[unstable(feature = "unix_socket_abstract", issue = "85410")]
198
- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
198
+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
199
199
pub fn bind_addr_with_backlog (
200
200
socket_addr : & SocketAddr ,
201
201
backlog : usize ,
0 commit comments