memberlist-net 0.8.3

memberlist's transport layer based on TCP and UDP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use memberlist_core::transport::{tests::handle_ping, Lpe};
use nodecraft::{resolver::socket_addr::SocketAddrResolver, CheapClone};

use crate::{NetTransport, NetTransportOptions, StreamLayer};

use super::*;

/// No label, no compression, no encryption
pub mod with_label;

/// No label, no compression, with encryption
#[cfg(feature = "encryption")]
pub mod with_label_and_encryption;