1 2 3 4 5 6 7 8 9 10 11
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0
//! Core types and traits for building Peer to Peer networks.
//!
//! The `netcore` crate contains all of the core functionality needed to build a Peer to Peer
//! network from building `Transport`s and `StreamMultiplexer`s to negotiating protocols on a
//! socket.
pub mod framing;
pub mod transport;