[−][src]Struct websocket::async::TcpListener
An I/O object representing a TCP socket listening for incoming connections.
This object can be converted into a stream of incoming connections for various forms of processing.
Methods
impl TcpListener
[src]
impl TcpListener
pub fn bind(addr: &SocketAddr, handle: &Handle) -> Result<TcpListener, Error>
[src]
pub fn bind(addr: &SocketAddr, handle: &Handle) -> Result<TcpListener, Error>
Create a new TCP listener associated with this event loop.
The TCP listener will bind to the provided addr
address, if available.
If the result is Ok
, the socket has successfully bound.
pub fn bind2(addr: &SocketAddr) -> Result<TcpListener, Error>
[src]
pub fn bind2(addr: &SocketAddr) -> Result<TcpListener, Error>
Create a new TCP listener associated with this event loop.
This is the same as bind
but uses the default reactor instead of an
explicit &Handle
.
pub fn accept(&mut self) -> Result<(TcpStream, SocketAddr), Error>
[src]
pub fn accept(&mut self) -> Result<(TcpStream, SocketAddr), Error>
Attempt to accept a connection and create a new connected TcpStream
if
successful.
This function will attempt an accept operation, but will not block waiting for it to complete. If the operation would block then a "would block" error is returned. Additionally, if this method would block, it registers the current task to receive a notification when it would otherwise not block.
Note that typically for simple usage it's easier to treat incoming
connections as a Stream
of TcpStream
s with the incoming
method
below.
Panics
This function will panic if it is called outside the context of a
future's task. It's recommended to only call this from the
implementation of a Future::poll
, if necessary.
pub fn accept_std(&mut self) -> Result<(TcpStream, SocketAddr), Error>
[src]
pub fn accept_std(&mut self) -> Result<(TcpStream, SocketAddr), Error>
Like accept
, except that it returns a raw std::net::TcpStream
.
The stream is in blocking mode, and is not associated with the Tokio event loop.
pub fn from_listener(
listener: TcpListener,
_addr: &SocketAddr,
handle: &Handle
) -> Result<TcpListener, Error>
[src]
pub fn from_listener(
listener: TcpListener,
_addr: &SocketAddr,
handle: &Handle
) -> Result<TcpListener, Error>
Create a new TCP listener from the standard library's TCP listener.
This method can be used when the Handle::tcp_listen
method isn't
sufficient because perhaps some more configuration is needed in terms of
before the calls to bind
and listen
.
This API is typically paired with the net2
crate and the TcpBuilder
type to build up and customize a listener before it's shipped off to the
backing event loop. This allows configuration of options like
SO_REUSEPORT
, binding to multiple addresses, etc.
The addr
argument here is one of the addresses that listener
is
bound to and the listener will only be guaranteed to accept connections
of the same address type currently.
Finally, the handle
argument is the event loop that this listener will
be bound to.
The platform specific behavior of this function looks like:
-
On Unix, the socket is placed into nonblocking mode and connections can be accepted as normal
-
On Windows, the address is stored internally and all future accepts will only be for the same IP version as
addr
specified. That is, ifaddr
is an IPv4 address then all sockets accepted will be IPv4 as well (same for IPv6).
pub fn poll_read(&self) -> Async<()>
[src]
pub fn poll_read(&self) -> Async<()>
Test whether this socket is ready to be read or not.
pub fn local_addr(&self) -> Result<SocketAddr, Error>
[src]
pub fn local_addr(&self) -> Result<SocketAddr, Error>
Returns the local address that this listener is bound to.
This can be useful, for example, when binding to port 0 to figure out which port was actually bound.
pub fn incoming(self) -> Incoming
[src]
pub fn incoming(self) -> Incoming
Consumes this listener, returning a stream of the sockets this listener accepts.
This method returns an implementation of the Stream
trait which
resolves to the sockets the are accepted on this listener.
pub fn set_ttl(&self, ttl: u32) -> Result<(), Error>
[src]
pub fn set_ttl(&self, ttl: u32) -> Result<(), Error>
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, Error>
[src]
pub fn ttl(&self) -> Result<u32, Error>
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<(), Error>
[src]
pub fn set_only_v6(&self, only_v6: bool) -> Result<(), Error>
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, Error>
[src]
pub fn only_v6(&self) -> Result<bool, Error>
Gets the value of the IPV6_V6ONLY
option for this socket.
For more information about this option, see set_only_v6
.
Trait Implementations
impl Debug for TcpListener
[src]
impl Debug for TcpListener
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl AsRawFd for TcpListener
[src]
impl AsRawFd for TcpListener
Auto Trait Implementations
impl Send for TcpListener
impl Send for TcpListener
impl Sync for TcpListener
impl Sync for TcpListener
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
impl<T> Typeable for T where
T: Any,
[src]
impl<T> Typeable for T where
T: Any,
impl<T> Erased for T
[src]
impl<T> Erased for T