// SPDX-License-Identifier: MIT
//! Packet capture backends.
//!
//! [`PacketSource`] is the trait that connects the capture layer to
//! everything downstream. The MVP provides [`live::LivePcapSource`], a
//! libpcap-backed implementation. Future work will add a
//! `PcapFileSource` for replaying `.pcap` files and a test-only mock.
pub use ;
pub use ;
pub use LivePcapSource;
use crateResult;
/// A source of raw link-layer frames.
///
/// Implementations must be [`Send`] so that the capture loop can run on a
/// dedicated thread.