[][src]Struct libp2p::websocket::WsConfig

pub struct WsConfig<T> { /* fields omitted */ }

A Websocket transport.

Methods

impl<T> WsConfig<T>[src]

pub fn new(transport: T) -> WsConfig<T>[src]

Create a new websocket transport based on the given transport.

pub fn max_redirects(&self) -> u8[src]

Return the configured maximum number of redirects.

pub fn set_max_redirects(&mut self, max: u8) -> &mut WsConfig<T>[src]

Set max. number of redirects to follow.

pub fn max_data_size(&self) -> u64[src]

Get the max. frame data size we support.

pub fn set_max_data_size(&mut self, size: u64) -> &mut WsConfig<T>[src]

Set the max. frame data size we support.

pub fn set_tls_config(&mut self, c: Config) -> &mut WsConfig<T>[src]

Set the TLS configuration if TLS support is desired.

pub fn use_deflate(&mut self, flag: bool) -> &mut WsConfig<T>[src]

Should the deflate extension (RFC 7692) be used if supported?

Trait Implementations

impl<T> From<WsConfig<T>> for WsConfig<T>[src]

impl<T> Clone for WsConfig<T> where
    T: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T> Debug for WsConfig<T> where
    T: Debug
[src]

impl<T> Transport for WsConfig<T> where
    T: Transport + Send + Clone + 'static,
    <T as Transport>::Error: Send,
    <T as Transport>::Error: 'static,
    <T as Transport>::Dial: Send,
    <T as Transport>::Dial: 'static,
    <T as Transport>::Listener: Send,
    <T as Transport>::Listener: 'static,
    <T as Transport>::ListenerUpgrade: Send,
    <T as Transport>::ListenerUpgrade: 'static,
    <T as Transport>::Output: AsyncRead,
    <T as Transport>::Output: AsyncWrite,
    <T as Transport>::Output: Send,
    <T as Transport>::Output: 'static, 
[src]

type Output = RwStreamSink<BytesConnection<<T as Transport>::Output>>

The result of a connection setup process, including protocol upgrades. Read more

type Error = Error<<T as Transport>::Error>

An error that occurred during connection setup.

type Listener = MapStream<Box<dyn Stream<Item = ListenerEvent<Box<dyn Future<Item = BytesConnection<<T as Transport>::Output>, Error = Error<<T as Transport>::Error>> + 'static + Send>>, Error = Error<<T as Transport>::Error>> + 'static + Send>, fn(BytesConnection<<T as Transport>::Output>, ConnectedPoint) -> RwStreamSink<BytesConnection<<T as Transport>::Output>>>

A stream of Outputs for inbound connections. Read more

type ListenerUpgrade = MapFuture<Box<dyn Future<Item = BytesConnection<<T as Transport>::Output>, Error = Error<<T as Transport>::Error>> + 'static + Send>, fn(BytesConnection<<T as Transport>::Output>, ConnectedPoint) -> RwStreamSink<BytesConnection<<T as Transport>::Output>>>

A pending Output for an inbound connection, obtained from the Listener stream. Read more

type Dial = MapFuture<Box<dyn Future<Item = BytesConnection<<T as Transport>::Output>, Error = Error<<T as Transport>::Error>> + 'static + Send>, fn(BytesConnection<<T as Transport>::Output>, ConnectedPoint) -> RwStreamSink<BytesConnection<<T as Transport>::Output>>>

A pending Output for an outbound connection, obtained from dialing. Read more

fn boxed(self) -> Boxed<Self::Output, Self::Error> where
    Self: Clone + Send + Sync + 'static,
    Self::Dial: Send,
    Self::Dial: 'static,
    Self::Listener: Send,
    Self::Listener: 'static,
    Self::ListenerUpgrade: Send,
    Self::ListenerUpgrade: 'static, 
[src]

Turns this Transport into an abstract boxed transport.

fn map<F, O>(self, map: F) -> Map<Self, F> where
    F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone
[src]

Applies a function on the connections created by the transport.

fn map_err<F, TNewErr>(self, map_err: F) -> MapErr<Self, F> where
    F: FnOnce(Self::Error) -> TNewErr + Clone
[src]

Applies a function on the errors generated by the futures of the transport.

fn or_transport<T>(self, other: T) -> OrTransport<Self, T>[src]

Builds a new transport that falls back to another transport when encountering errors on dialing or listening for connections. Read more

fn with_upgrade<U, O, E>(self, upgrade: U) -> Upgrade<Self, U> where
    U: InboundUpgrade<Self::Output, Output = O, Error = E> + OutboundUpgrade<Self::Output, Output = O, Error = E>,
    Self::Output: AsyncRead,
    Self::Output: AsyncWrite
[src]

Wraps this transport inside an [Upgrade]. Read more

fn and_then<C, F, O>(self, upgrade: C) -> AndThen<Self, C> where
    C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
    F: IntoFuture<Item = O>, 
[src]

Applies a function producing an asynchronous result to every connection created by this transport. Read more

fn with_timeout(self, timeout: Duration) -> TransportTimeout<Self>[src]

Adds a timeout to the connection setup (including upgrades) for all inbound and outbound connection attempts. Read more

fn with_outbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>[src]

Adds a timeout to the connection setup (including upgrades) for all outbound connection attempts. Read more

fn with_inbound_timeout(self, timeout: Duration) -> TransportTimeout<Self>[src]

Adds a timeout to the connection setup (including upgrades) for all inbound connection attempts. Read more

Auto Trait Implementations

impl<T> Send for WsConfig<T> where
    T: Send

impl<T> Sync for WsConfig<T> where
    T: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T> Erased for T