Struct tari_p2p::initialization::CommsConfig[][src]

pub struct CommsConfig {
    pub datastore_path: PathBuf,
    pub peer_database_name: String,
    pub max_concurrent_inbound_tasks: usize,
    pub outbound_buffer_size: usize,
    pub dht: DhtConfig,
    pub node_identity: Arc<NodeIdentity>,
    pub transport_type: TransportType,
    pub allow_test_addresses: bool,
    pub listener_liveness_max_sessions: usize,
    pub listener_liveness_allowlist_cidrs: Vec<String>,
    pub user_agent: String,
    pub peer_seeds: Vec<String>,
    pub dns_seeds: Vec<String>,
    pub dns_seeds_name_server: SocketAddr,
    pub dns_seeds_use_dnssec: bool,
}

Configuration for a comms node

Fields

datastore_path: PathBuf

Path to the LMDB data files.

peer_database_name: String

Name to use for the peer database

max_concurrent_inbound_tasks: usize

The maximum number of concurrent Inbound tasks allowed before back-pressure is applied to peers

outbound_buffer_size: usize

The size of the buffer (channel) which holds pending outbound message requests

dht: DhtConfig

Configuration for DHT

node_identity: Arc<NodeIdentity>

The identity of this node on the network

transport_type: TransportType

The type of transport to use

allow_test_addresses: bool

Set to true to allow peers to provide test addresses (loopback, memory etc.). If set to false, memory addresses, loopback, local-link (i.e addresses used in local tests) will not be accepted from peers. This should always be false for non-test nodes.

listener_liveness_max_sessions: usize

The maximum number of liveness sessions allowed for the connection listener. Liveness sessions can be used by third party tooling to determine node liveness. A value of 0 will disallow any liveness sessions.

listener_liveness_allowlist_cidrs: Vec<String>

CIDR for addresses allowed to enter into liveness check mode on the listener.

user_agent: String

User agent string for this node

peer_seeds: Vec<String>

Unparsed peer seeds

dns_seeds: Vec<String>

DNS seeds hosts. The DNS TXT records are queried from these hosts and the resulting peers added to the comms peer list.

dns_seeds_name_server: SocketAddr

DNS resolver to use for DNS seeds.

dns_seeds_use_dnssec: bool

All DNS seed records must pass DNSSEC validation

Trait Implementations

impl Clone for CommsConfig[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, U> Cast<U> for T where
    U: FromCast<T>, 

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

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

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T> Instrument for T[src]

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> IntoSql for T

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>,