truthlinked-net 0.1.2

TruthLinked networking layer — built for the TruthLinked blockchain.
1
2
3
4
5
6
7
8
9
10
11
12
//! Post-quantum networking primitives for TruthLinked validators and nodes.
//!
//! The networking layer owns peer discovery, ingress handling, authenticated
//! post-quantum handshakes, encrypted transport sessions, and TCP socket tuning.
//! Transport changes must preserve peer identity and avoid blocking consensus
//! progress under bursty transaction load.

pub mod discovery;
pub mod ingress;
pub mod network;
pub mod pq_transport;
pub mod tcp_config;