forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move
unix_socket_abstract
feature API to SocketAddrExt
.
- Loading branch information
Showing
6 changed files
with
123 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
//! Android-specific networking functionality. | ||
#![unstable(feature = "tcp_quickack", issue = "96256")] | ||
|
||
#[unstable(feature = "unix_socket_abstract", issue = "85410")] | ||
pub use crate::os::net::linux_ext::addr::SocketAddrExt; | ||
|
||
#[unstable(feature = "tcp_quickack", issue = "96256")] | ||
pub use crate::os::net::linux_ext::tcp::TcpStreamExt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
//! Linux-specific networking functionality. | ||
#![unstable(feature = "tcp_quickack", issue = "96256")] | ||
|
||
#[unstable(feature = "unix_socket_abstract", issue = "85410")] | ||
pub use crate::os::net::linux_ext::addr::SocketAddrExt; | ||
|
||
#[unstable(feature = "tcp_quickack", issue = "96256")] | ||
pub use crate::os::net::linux_ext::tcp::TcpStreamExt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
//! Linux and Android-specific extensions to socket addresses. | ||
use crate::os::unix::net::SocketAddr; | ||
use crate::sealed::Sealed; | ||
|
||
/// Platform-specific extensions to [`SocketAddr`]. | ||
#[unstable(feature = "unix_socket_abstract", issue = "85410")] | ||
pub trait SocketAddrExt: Sealed { | ||
/// Creates a Unix socket address in the abstract namespace. | ||
/// | ||
/// The abstract namespace is a Linux-specific extension that allows Unix | ||
/// sockets to be bound without creating an entry in the filesystem. | ||
/// Abstract sockets are unaffected by filesystem layout or permissions, | ||
/// and no cleanup is necessary when the socket is closed. | ||
/// | ||
/// An abstract socket address name may contain any bytes, including zero. | ||
/// | ||
/// # Errors | ||
/// | ||
/// Returns an error if the name is longer than `SUN_LEN - 1`. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ```no_run | ||
/// #![feature(unix_socket_abstract)] | ||
/// use std::os::unix::net::{UnixListener, SocketAddr}; | ||
/// use std::os::linux::net::SocketAddrExt; | ||
/// | ||
/// fn main() -> std::io::Result<()> { | ||
/// let addr = SocketAddr::from_abstract_name(b"hidden")?; | ||
/// let listener = match UnixListener::bind_addr(&addr) { | ||
/// Ok(sock) => sock, | ||
/// Err(err) => { | ||
/// println!("Couldn't bind: {err:?}"); | ||
/// return Err(err); | ||
/// } | ||
/// }; | ||
/// Ok(()) | ||
/// } | ||
/// ``` | ||
fn from_abstract_name<N>(name: &N) -> crate::io::Result<SocketAddr> | ||
where | ||
N: AsRef<[u8]>; | ||
|
||
/// Returns the contents of this address if it is in the abstract namespace. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ```no_run | ||
/// #![feature(unix_socket_abstract)] | ||
/// use std::os::unix::net::{UnixListener, SocketAddr}; | ||
/// use std::os::linux::net::SocketAddrExt; | ||
/// | ||
/// fn main() -> std::io::Result<()> { | ||
/// let name = b"hidden"; | ||
/// let name_addr = SocketAddr::from_abstract_name(name)?; | ||
/// let socket = UnixListener::bind_addr(&name_addr)?; | ||
/// let local_addr = socket.local_addr().expect("Couldn't get local address"); | ||
/// assert_eq!(local_addr.as_abstract_name(), Some(&name[..])); | ||
/// Ok(()) | ||
/// } | ||
/// ``` | ||
fn as_abstract_name(&self) -> Option<&[u8]>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters