[][src]Enum tari_common::configuration::global::CommsTransport

pub enum CommsTransport {
    Tcp {
        listener_address: Multiaddr,
        tor_socks_address: Option<Multiaddr>,
        tor_socks_auth: Option<SocksAuthentication>,
    },
    TorHiddenService {
        control_server_address: Multiaddr,
        socks_address_override: Option<Multiaddr>,
        forward_address: Multiaddr,
        auth: TorControlAuthentication,
        onion_port: NonZeroU16,
    },
    Socks5 {
        proxy_address: Multiaddr,
        auth: SocksAuthentication,
        listener_address: Multiaddr,
    },
}

Variants

Tcp

Use TCP to join the Tari network. This transport can only communicate with TCP/IP addresses, so peers with e.g. tor onion addresses will not be contactable.

Fields of Tcp

listener_address: Multiaddrtor_socks_address: Option<Multiaddr>tor_socks_auth: Option<SocksAuthentication>
TorHiddenService

Configures the node to run over a tor hidden service using the Tor proxy. This transport recognises ip/tcp, onion v2, onion v3 and DNS addresses.

Fields of TorHiddenService

control_server_address: Multiaddr

The address of the control server

socks_address_override: Option<Multiaddr>forward_address: Multiaddr

The address used to receive proxied traffic from the tor proxy to the Tari node. This port must be available

auth: TorControlAuthenticationonion_port: NonZeroU16
Socks5

Use a SOCKS5 proxy transport. This transport recognises any addresses supported by the proxy.

Fields of Socks5

proxy_address: Multiaddrauth: SocksAuthenticationlistener_address: Multiaddr

Trait Implementations

impl Clone for CommsTransport[src]

impl Debug for CommsTransport[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

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

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

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,