rxdp 0.3.1

Bindings for interoperating with XDP programs and eBPF maps.
Documentation
1
2
3
4
5
6
#![macro_use]

macro_rules! fail {
    ( $n:tt ) => { return Err(XDPError::new($n)) };
    ( $n:literal, $( $arg:tt )* ) => { return Err(XDPError::new(&format!($n, $($arg)*))) };
}