tari_comms 5.3.0-pre.3

A peer-to-peer messaging system
Documentation
// Copyright 2022 The Tari Project
// SPDX-License-Identifier: BSD-3-Clause

//! # Tari Comms
//!
//! The Tari network messaging library.
//!
//! See [CommsBuilder] for more information on using this library.
//!
//! [CommsBuilder]: crate::CommsBuilder
#[macro_use]
mod macros;

mod builder;
pub use builder::{CommsBuilder, CommsBuilderError, CommsNode, UnspawnedCommsNode};

pub mod connection_manager;
pub use connection_manager::{PeerConnection, PeerConnectionError};

pub mod connectivity;

pub mod peer_manager;
pub use peer_manager::{NodeIdentity, OrNotFound, PeerManager};
pub mod framing;

mod multiplexing;
pub use multiplexing::Substream;

mod noise;
mod proto;
mod stream_id;

pub mod backoff;
pub mod bounded_executor;
pub mod memsocket;
pub mod protocol;
#[macro_use]
pub mod message;
pub mod net_address;
pub mod pipeline;
pub mod socks;
pub mod tor;
pub mod transports;
pub mod types;
#[macro_use]
pub mod utils;

pub mod peer_validator;

mod bans;
pub use bans::{BAN_DURATION_LONG, BAN_DURATION_SHORT};
pub mod test_utils;
pub mod traits;

//---------------------------------- Re-exports --------------------------------------------//
// Rather than requiring dependent crates to import dependencies for use with `tari_comms` we re-export them here.

pub mod multiaddr {
    // Re-export so that client code does not have to have multiaddr as a dependency
    pub use ::multiaddr::{Error, Multiaddr, Protocol, multiaddr};
}

pub use async_trait::async_trait;
pub use bytes::{Buf, BufMut, Bytes, BytesMut};
#[cfg(feature = "rpc")]
pub use tower::make::MakeService;

/// Was the connection closed due to minimize_connections
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum Minimized {
    Yes,
    No,
}