pub struct UnixListener(_);Expand description
A structure representing a Unix domain socket server.
Examples
use std::thread;
use std::os::unix::net::{UnixStream, UnixListener};
fn handle_client(stream: UnixStream) {
// ...
}
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
// accept connections and process them, spawning a new thread for each one
for stream in listener.incoming() {
match stream {
Ok(stream) => {
/* connection succeeded */
thread::spawn(|| handle_client(stream));
}
Err(err) => {
/* connection failed */
break;
}
}
}
Ok(())
}RunImplementations
impl UnixListener
source
impl UnixListener
sourcepub fn bind_addr(socket_addr: &SocketAddr) -> Result<UnixListener>
source
pub fn bind_addr(socket_addr: &SocketAddr) -> Result<UnixListener>
sourceCreates a new UnixListener bound to the specified socket address.
Examples
#![feature(unix_socket_abstract)]
use std::os::unix::net::{UnixListener};
fn main() -> std::io::Result<()> {
let listener1 = UnixListener::bind("path/to/socket")?;
let addr = listener1.local_addr()?;
let listener2 = match UnixListener::bind_addr(&addr) {
Ok(sock) => sock,
Err(err) => {
println!("Couldn't bind: {err:?}");
return Err(err);
}
};
Ok(())
}Runpub fn accept(&self) -> Result<(UnixStream, SocketAddr)>
source
pub fn accept(&self) -> Result<(UnixStream, SocketAddr)>
sourceAccepts a new incoming connection to this listener.
This function will block the calling thread until a new Unix connection
is established. When established, the corresponding UnixStream and
the remote peer’s address will be returned.
Examples
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
match listener.accept() {
Ok((socket, addr)) => println!("Got a client: {addr:?}"),
Err(e) => println!("accept function failed: {e:?}"),
}
Ok(())
}Runpub fn try_clone(&self) -> Result<UnixListener>
source
pub fn try_clone(&self) -> Result<UnixListener>
sourceCreates a new independently owned handle to the underlying socket.
The returned UnixListener is a reference to the same socket that this
object references. Both handles can be used to accept incoming
connections and options set on one listener will affect the other.
Examples
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
let listener_copy = listener.try_clone().expect("try_clone failed");
Ok(())
}Runpub fn local_addr(&self) -> Result<SocketAddr>
source
pub fn local_addr(&self) -> Result<SocketAddr>
sourcepub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
source
pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
sourceMoves the socket into or out of nonblocking mode.
This will result in the accept operation becoming nonblocking,
i.e., immediately returning from their calls. If the IO operation is
successful, Ok is returned and no further action is required. If the
IO operation could not be completed and needs to be retried, an error
with kind io::ErrorKind::WouldBlock is returned.
Examples
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
listener.set_nonblocking(true).expect("Couldn't set non blocking");
Ok(())
}Runpub fn take_error(&self) -> Result<Option<Error>>
source
pub fn take_error(&self) -> Result<Option<Error>>
sourceReturns the value of the SO_ERROR option.
Examples
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/tmp/sock")?;
if let Ok(Some(err)) = listener.take_error() {
println!("Got error: {err:?}");
}
Ok(())
}RunPlatform specific
On Redox this always returns None.
pub fn incoming(&self) -> Incoming<'_>ⓘNotable traits for Incoming<'a>impl<'a> Iterator for Incoming<'a> type Item = Result<UnixStream>;
source
pub fn incoming(&self) -> Incoming<'_>ⓘNotable traits for Incoming<'a>impl<'a> Iterator for Incoming<'a> type Item = Result<UnixStream>;
sourceReturns an iterator over incoming connections.
The iterator will never return None and will also not yield the
peer’s SocketAddr structure.
Examples
use std::thread;
use std::os::unix::net::{UnixStream, UnixListener};
fn handle_client(stream: UnixStream) {
// ...
}
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
for stream in listener.incoming() {
match stream {
Ok(stream) => {
thread::spawn(|| handle_client(stream));
}
Err(err) => {
break;
}
}
}
Ok(())
}RunTrait Implementations
impl AsFd for UnixListener
source
impl AsFd for UnixListener
sourceimpl AsRawFd for UnixListener
source
impl AsRawFd for UnixListener
sourceimpl Debug for UnixListener
source
impl Debug for UnixListener
sourceimpl From<OwnedFd> for UnixListener
source
impl From<OwnedFd> for UnixListener
sourcefn from(fd: OwnedFd) -> UnixListener
source
fn from(fd: OwnedFd) -> UnixListener
sourceConverts to this type from the input type.
impl From<UnixListener> for OwnedFd
source
impl From<UnixListener> for OwnedFd
sourcefn from(listener: UnixListener) -> OwnedFd
source
fn from(listener: UnixListener) -> OwnedFd
sourceConverts to this type from the input type.
impl FromRawFd for UnixListener
source
impl FromRawFd for UnixListener
sourceunsafe fn from_raw_fd(fd: RawFd) -> UnixListener
source
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
sourceConstructs a new instance of Self from the given raw file
descriptor. Read more
impl<'a> IntoIterator for &'a UnixListener
source
impl<'a> IntoIterator for &'a UnixListener
sourcetype Item = Result<UnixStream, Error>
type Item = Result<UnixStream, Error>
The type of the elements being iterated over.
impl IntoRawFd for UnixListener
source
impl IntoRawFd for UnixListener
sourcefn into_raw_fd(self) -> RawFd
source
fn into_raw_fd(self) -> RawFd
sourceConsumes this object, returning the raw underlying file descriptor. Read more
Auto Trait Implementations
impl RefUnwindSafe for UnixListener
impl Send for UnixListener
impl Sync for UnixListener
impl Unpin for UnixListener
impl UnwindSafe for UnixListener
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more