diff options
Diffstat (limited to 'crates/tor-proto/src/circuit.rs')
| -rw-r--r-- | crates/tor-proto/src/circuit.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/tor-proto/src/circuit.rs b/crates/tor-proto/src/circuit.rs new file mode 100644 index 000000000..efd38c896 --- /dev/null +++ b/crates/tor-proto/src/circuit.rs @@ -0,0 +1,8 @@ +//! Circuit-related types and helpers. +//! +//! This code is shared between the client and relay implementations. + +pub(crate) mod unique_id; + +pub use crate::memquota::StreamAccount; +pub use unique_id::UniqId; |
