Skip to main content

push_packet/channels/
mod.rs

1//! Defines channels for copying and routing packets to userspace with `BPF_RING_BUG` and `AF_XDP`
2
3pub mod copy;
4
5mod error;
6pub mod route;
7
8mod poll;
9pub use error::ChannelError;