laminar/
infrastructure.rs

1//! This module provides the logic around the processing of the packet.
2//! Like ordering, sequencing, controlling congestion, fragmentation, and packet acknowledgment.
3
4pub use self::acknowledgment::AcknowledgmentHandler;
5pub use self::acknowledgment::SentPacket;
6pub use self::congestion::CongestionHandler;
7pub use self::fragmenter::Fragmentation;
8
9mod acknowledgment;
10mod congestion;
11mod fragmenter;
12
13pub mod arranging;