nfprobe 0.0.1

A netflow probe using ebpf.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod sys;

mod consts;
pub use consts::*;

mod map;
pub use map::{
    Any,
    BpfMap,
    BpfMapIter,
};

pub type Result<T> = std::result::Result<T, std::io::Error>;