blob: 3dd2a4a7c1ae336f6c0bc1bd6e164799cf4e30e6 (
plain)
1
2
3
4
5
6
7
|
//! XON/XOFF stream flow control.
//!
//! See <https://spec.torproject.org/proposals/324-rtt-congestion-control.html>.
pub(crate) mod reader;
#[cfg(feature = "flowctl-cc")]
pub(super) mod state;
|