[−][src]Struct mio::net::TcpListener
A structure representing a socket server
Examples
use mio::{Events, Ready, Poll, PollOpt, Token}; use mio::net::TcpListener; use std::time::Duration; let listener = TcpListener::bind(&"127.0.0.1:34255".parse()?)?; let poll = Poll::new()?; let mut events = Events::with_capacity(128); // Register the socket with `Poll` poll.register(&listener, Token(0), Ready::writable(), PollOpt::edge())?; poll.poll(&mut events, Some(Duration::from_millis(100)))?; // There may be a socket ready to be accepted
Methods
impl TcpListener[src]
impl TcpListenerpub fn bind(addr: &SocketAddr) -> Result<TcpListener>[src]
pub fn bind(addr: &SocketAddr) -> Result<TcpListener>Convenience method to bind a new TCP listener to the specified address to receive new connections.
This function will take the following steps:
- Create a new TCP socket.
- Set the
SO_REUSEADDRoption on the socket. - Bind the socket to the specified address.
- Call
listenon the socket to prepare it to receive new connections.
If fine-grained control over the binding and listening process for a
socket is desired then the net2::TcpBuilder methods can be used in
combination with the TcpListener::from_listener method to transfer
ownership into mio.
pub fn from_std(listener: TcpListener) -> Result<TcpListener>[src]
pub fn from_std(listener: TcpListener) -> Result<TcpListener>Creates a new TcpListener from an instance of a
std::net::TcpListener type.
This function will set the listener provided into nonblocking mode on
Unix, and otherwise the stream will just be wrapped up in an mio stream
ready to accept new connections and become associated with an event
loop.
The address provided must be the address that the listener is bound to.
pub fn accept(&self) -> Result<(TcpStream, SocketAddr)>[src]
pub fn accept(&self) -> Result<(TcpStream, SocketAddr)>Accepts a new TcpStream.
This may return an Err(e) where e.kind() is
io::ErrorKind::WouldBlock. This means a stream may be ready at a later
point and one should wait for a notification before calling accept
again.
If an accepted stream is returned, the remote address of the peer is returned along with it.
pub fn accept_std(&self) -> Result<(TcpStream, SocketAddr)>[src]
pub fn accept_std(&self) -> Result<(TcpStream, SocketAddr)>Accepts a new std::net::TcpStream.
This method is the same as accept, except that it returns a TCP socket
in blocking mode which isn't bound to mio. This can be later then
converted to a mio type, if necessary.
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 try_clone(&self) -> Result<TcpListener>[src]
pub fn try_clone(&self) -> Result<TcpListener>Creates a new independently owned handle to the underlying socket.
The returned TcpListener 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 set_ttl(&self, ttl: u32) -> Result<()>[src]
pub fn set_ttl(&self, ttl: u32) -> Result<()>Sets the value for the IP_TTL option on this socket.
This value sets the time-to-live field that is used in every packet sent from this socket.
pub fn ttl(&self) -> Result<u32>[src]
pub fn ttl(&self) -> Result<u32>Gets the value of the IP_TTL option for this socket.
For more information about this option, see set_ttl.
pub fn set_only_v6(&self, only_v6: bool) -> Result<()>[src]
pub fn set_only_v6(&self, only_v6: bool) -> Result<()>Sets the value for the IPV6_V6ONLY option on this socket.
If this is set to true then the socket is restricted to sending and
receiving IPv6 packets only. In this case two IPv4 and IPv6 applications
can bind the same port at the same time.
If this is set to false then the socket can be used to send and
receive packets from an IPv4-mapped IPv6 address.
pub fn only_v6(&self) -> Result<bool>[src]
pub fn only_v6(&self) -> Result<bool>Gets the value of the IPV6_V6ONLY option for this socket.
For more information about this option, see set_only_v6.
pub fn take_error(&self) -> Result<Option<Error>>[src]
pub fn take_error(&self) -> Result<Option<Error>>Get the value of the SO_ERROR option on this socket.
This will retrieve the stored error in the underlying socket, clearing the field in the process. This can be useful for checking errors between calls.
Trait Implementations
impl Evented for TcpListener[src]
impl Evented for TcpListenerfn register(
&self,
poll: &Poll,
token: Token,
interest: Ready,
opts: PollOpt
) -> Result<()>[src]
fn register(
&self,
poll: &Poll,
token: Token,
interest: Ready,
opts: PollOpt
) -> Result<()>Register self with the given Poll instance. Read more
fn reregister(
&self,
poll: &Poll,
token: Token,
interest: Ready,
opts: PollOpt
) -> Result<()>[src]
fn reregister(
&self,
poll: &Poll,
token: Token,
interest: Ready,
opts: PollOpt
) -> Result<()>Re-register self with the given Poll instance. Read more
fn deregister(&self, poll: &Poll) -> Result<()>[src]
fn deregister(&self, poll: &Poll) -> Result<()>Deregister self from the given Poll instance Read more
impl Debug for TcpListener[src]
impl Debug for TcpListenerfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl FromRawFd for TcpListener[src]
impl FromRawFd for TcpListenerunsafe fn from_raw_fd(fd: RawFd) -> TcpListener[src]
unsafe fn from_raw_fd(fd: RawFd) -> TcpListenerConstructs a new instance of Self from the given raw file descriptor. Read more
impl IntoRawFd for TcpListener[src]
impl IntoRawFd for TcpListenerfn into_raw_fd(self) -> RawFd[src]
fn into_raw_fd(self) -> RawFdConsumes this object, returning the raw underlying file descriptor. Read more
impl AsRawFd for TcpListener[src]
impl AsRawFd for TcpListenerAuto Trait Implementations
impl Send for TcpListener
impl Send for TcpListenerimpl Sync for TcpListener
impl Sync for TcpListenerBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<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, ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably 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