rust-netmap 0.0.7

Bindings to netmap - the fast packet I/O framework
1
2
3
4
5
6
7
8
9
10
#![feature(libc)]
#![allow(unstable, bad_style, raw_pointer_derive)]
extern crate libc;

pub mod netmap;
pub mod netmap_user;
mod netmap_util;

#[cfg(feature = "netmap_with_libs")]
mod netmap_with_libs;