mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-07-05 12:41:34 +00:00
Add muxing trait and architecture
This commit is contained in:
@ -24,11 +24,16 @@ extern crate bytes;
|
||||
#[macro_use]
|
||||
extern crate futures;
|
||||
extern crate multistream_select;
|
||||
extern crate smallvec;
|
||||
extern crate tokio_io;
|
||||
|
||||
/// Multi-address re-export.
|
||||
pub extern crate multiaddr;
|
||||
|
||||
mod connection_reuse;
|
||||
pub mod muxing;
|
||||
pub mod transport;
|
||||
|
||||
pub use self::connection_reuse::ConnectionReuse;
|
||||
pub use self::muxing::StreamMuxer;
|
||||
pub use self::transport::{ConnectionUpgrade, PlainText, Transport, UpgradedNode, OrUpgrade};
|
||||
|
Reference in New Issue
Block a user