ipfrs-network 0.2.0

Peer-to-peer networking layer with libp2p and QUIC for IPFRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Network traffic shaping with multiple queuing disciplines.
//!
//! Provides production-quality traffic shaping including FIFO, priority queuing,
//! weighted fair queuing, token bucket, leaky bucket, and DiffServ disciplines.
//! Also retains the original peer-level shaper types for backwards compatibility.

pub mod functions;
pub mod shapererror_traits;
pub mod types;
pub mod types_3;

// Re-export all types
pub use functions::*;
pub use types::*;
pub use types_3::*;

#[cfg(test)]
mod tests;