Tschuss Status Quo - Hallo, Zukunft!
This commit is contained in:
Alexey
2025-12-30 05:08:05 +03:00
parent 44169441b4
commit 3d9150a074
33 changed files with 6079 additions and 0 deletions

10
src/stream/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
//! Stream wrappers for MTProto protocol layers
pub mod traits;
pub mod crypto_stream;
pub mod tls_stream;
pub mod frame_stream;
pub use crypto_stream::{CryptoReader, CryptoWriter, PassthroughStream};
pub use tls_stream::{FakeTlsReader, FakeTlsWriter};
pub use frame_stream::*;