mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-27 07:59:59 -07:00
Mixing async and sync I/O leads to a multitude of complications, and generally speaking it's much more convenient to stick to one paradigm or the other. Since axum (and many other HTTP servers) use async, and since async is a convenient model for performing operations like "handle an MPSC message or file read, whichever happens first", let's commit to an async interface.
10 lines
153 B
Rust
10 lines
153 B
Rust
pub mod hdlc;
|
|
pub mod diag;
|
|
pub mod diag_device;
|
|
pub mod qmdl;
|
|
pub mod log_codes;
|
|
pub mod gsmtap;
|
|
pub mod gsmtap_parser;
|
|
pub mod pcap;
|
|
pub mod analysis;
|