[−][src]Struct unix_socket::UnixListener
A structure representing a Unix domain socket server.
Examples
use std::thread; use unix_socket::{UnixStream, UnixListener}; fn handle_client(stream: UnixStream) { // ... } let listener = UnixListener::bind("/path/to/the/socket").unwrap(); // 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; } } } // close the listener socket drop(listener);
Methods
impl UnixListener
[src]
impl UnixListener
pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>
[src]
pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>
Creates a new UnixListener
bound to the specified socket.
Linux provides, as a nonportable extension, a separate "abstract"
address namespace as opposed to filesystem-based addressing. If path
begins with a null byte, it will be interpreted as an "abstract"
address. Otherwise, it will be interpreted as a "pathname" address,
corresponding to a path on the filesystem.
pub fn accept(&self) -> Result<(UnixStream, SocketAddr)>
[src]
pub fn accept(&self) -> Result<(UnixStream, SocketAddr)>
Accepts a new incoming connection to this listener.
This function will block the calling thread until a new Unix connection
is established. When established, the corersponding UnixStream
and
the remote peer's address will be returned.
pub fn try_clone(&self) -> Result<UnixListener>
[src]
pub fn try_clone(&self) -> Result<UnixListener>
Creates 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.
pub fn local_addr(&self) -> Result<SocketAddr>
[src]
pub fn local_addr(&self) -> Result<SocketAddr>
Returns the local socket address of this listener.
pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
[src]
pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
Moves the socket into or out of nonblocking mode.
pub fn take_error(&self) -> Result<Option<Error>>
[src]
pub fn take_error(&self) -> Result<Option<Error>>
Returns the value of the SO_ERROR
option.
ⓘImportant traits for Incoming<'a>pub fn incoming<'a>(&'a self) -> Incoming<'a>
[src]
pub fn incoming<'a>(&'a self) -> Incoming<'a>
Returns an iterator over incoming connections.
The iterator will never return None
and will also not yield the
peer's SocketAddr
structure.
Trait Implementations
impl<'a> IntoIterator for &'a UnixListener
[src]
impl<'a> IntoIterator for &'a UnixListener
type Item = Result<UnixStream>
The type of the elements being iterated over.
type IntoIter = Incoming<'a>
Which kind of iterator are we turning this into?
ⓘImportant traits for Incoming<'a>fn into_iter(self) -> Incoming<'a>
[src]
fn into_iter(self) -> Incoming<'a>
Creates an iterator from a value. Read more
impl Debug for UnixListener
[src]
impl Debug for UnixListener
fn fmt(&self, fmt: &mut Formatter) -> Result
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl FromRawFd for UnixListener
[src]
impl FromRawFd for UnixListener
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
[src]
unsafe fn from_raw_fd(fd: RawFd) -> UnixListener
Constructs a new instance of Self
from the given raw file descriptor. Read more
impl IntoRawFd for UnixListener
[src]
impl IntoRawFd for UnixListener
fn into_raw_fd(self) -> RawFd
[src]
fn into_raw_fd(self) -> RawFd
Consumes this object, returning the raw underlying file descriptor. Read more
impl AsRawFd for UnixListener
[src]
impl AsRawFd for UnixListener
Auto Trait Implementations
impl Send for UnixListener
impl Send for UnixListener
impl Sync for UnixListener
impl Sync for UnixListener
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more