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
9
10
//! Local Unix-socket IPC between the egress daemon and clients (the inspector
//! and `--json` consumers).

pub mod client;
pub mod protocol;
pub mod server;

pub use client::IpcClient;
pub use protocol::{ConnectionDto, DaemonStatus, Event, Request, Response};
pub use server::{Bus, LiveState, ServerCtx, run_server};