@@ -57,7 +57,7 @@ impl UnixListener {
5757 /// Default "backlog" for [`UnixListener::bind`] and
5858 /// [`UnixListener::bind_addr`]. See [`UnixListener::bind_with_backlog`]
5959 /// for an explanation of backlog values.
60- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
60+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
6161 pub const DEFAULT_BACKLOG : usize = 128 ;
6262
6363 /// Creates a new `UnixListener` bound to the specified socket.
@@ -115,7 +115,7 @@ impl UnixListener {
115115 /// The specified backlog may be larger than supported by the underlying
116116 /// system. In this case an [`io::Error`] with
117117 /// [`io::ErrorKind::InvalidData`] will be returned.
118- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
118+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
119119 pub fn bind_with_backlog < P : AsRef < Path > > ( path : P , backlog : usize ) -> io:: Result < UnixListener > {
120120 unsafe {
121121 let backlog = backlog
@@ -195,7 +195,7 @@ impl UnixListener {
195195 /// }
196196 /// ```
197197 //#[unstable(feature = "unix_socket_abstract", issue = "85410")]
198- #[ unstable( feature = "bind_with_backlog" , issue = "none " ) ]
198+ #[ unstable( feature = "bind_with_backlog" , issue = "94406 " ) ]
199199 pub fn bind_addr_with_backlog (
200200 socket_addr : & SocketAddr ,
201201 backlog : usize ,
0 commit comments