bluebox 0.1.4

A fast DNS interceptor and cache for local networks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Network-related modules for packet capture and construction.

pub mod arp;
mod buffer;
pub(crate) mod capture;
pub mod forward;
mod packet;

pub use arp::{
    ArpPacketBuilder, ArpSpoofConfig, ArpSpoofer, ArpTable, HostInfo, detect_gateway,
    get_interface_info,
};
pub use buffer::BufferPool;
pub use capture::{
    PacketCapture, PacketInfo, PacketSender, PnetCapture, PnetSender, extract_dns_query,
    find_interface,
};
pub use packet::PacketBuilder;