mirror of
https://github.com/telemt/telemt.git
synced 2026-09-09 12:04:09 +03:00
1029703c2c
Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com> Co-Authored-By: John Preston <17900494+john-preston@users.noreply.github.com>
15 lines
617 B
Rust
15 lines
617 B
Rust
//! Bounded WEB carrier ingress behind a trusted external TLS terminator.
|
|
|
|
/// Browser bridge generation for the serialized HTTPS carrier.
|
|
pub(crate) mod bridge;
|
|
/// Shared binary frame codec and protocol constants.
|
|
pub(crate) mod frame;
|
|
/// Plain HTTP ingress and decoy routing behind external TLS termination.
|
|
pub(crate) mod http;
|
|
/// Process-wide credentials, quotas, memory budgets, and shutdown ownership.
|
|
pub(crate) mod manager;
|
|
/// Resumable carrier sessions and logical-stream state machines.
|
|
pub(crate) mod session;
|
|
/// AsyncRead and AsyncWrite adapter for one logical MTProxy stream.
|
|
pub(crate) mod stream;
|