pktscope-core 0.2.0

Core engine for pktscope: live/offline capture, protocol decoders, flow tracking, filters, and egress monitoring
Documentation
1
2
3
4
5
6
7
8
//! Passive enrichment of observed traffic: IP→name resolution (DNS answers +
//! TLS SNI) and, in a later milestone, offline GeoIP/ASN lookup.

pub mod geoip;
pub mod names;

pub use geoip::{Enricher, GeoInfo, GeoIpEnricher, NullEnricher};
pub use names::{NameEntry, NameResolver, NameSource, SharedNameResolver};