Files
domcyrus--rustnet/crates/rustnet-core/src/network/mod.rs
T
wehub-resource-sync 19dc5d82a0
Rust / build (push) Failing after 1s
Rust / docker (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:29:44 +08:00

23 lines
723 B
Rust

//! Networking core: link-layer/IP/transport parsers, deep packet inspection
//! (HTTP, TLS SNI, DNS, SSH, QUIC, NTP, mDNS, LLMNR, DHCP, SNMP, SSDP,
//! NetBIOS), connection merging, GeoIP lookups, OUI vendor resolution,
//! interface-statistics traits, and the shared connection/protocol types.
//!
//! This is the platform-independent, capture-independent analysis layer.
//! Raw packet capture lives in the `rustnet-capture` crate and platform-specific
//! process attribution in the `rustnet-host` crate.
pub mod bogon;
pub mod dns;
pub mod dpi;
pub mod geoip;
pub mod interface_stats;
pub mod link_layer;
pub mod merge;
pub mod oui;
pub mod parser;
pub mod protocol;
pub mod services;
pub mod tracker;
pub mod types;