blob: dcf19461c8d327fcba571347b4ae9bc1e8cbbd2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! Implements Tor's "stream"s from a client perspective
//!
//! A stream is an anonymized conversation; multiple streams can be
//! multiplexed over a single circuit.
//!
//! To create a stream, use [crate::circuit::ClientCirc::begin_stream].
//!
//! # Limitations
//!
//! There is no fairness, rate-limiting, or flow control.
mod data;
mod raw;
mod resolve;
pub use data::DataStream;
pub use raw::RawCellStream;
pub use resolve::ResolveStream;
|