1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! Netlink is a linux kernel interface used for communication between
//! kernel and userspace.
//!
//! `socket` module can be used to establish Netlink socket
//! `packet` contains high level functions and traits
#[macro_use]
extern crate bitflags;
extern crate pnet;
extern crate pnet_macros_support;
extern crate libc;
extern crate byteorder;
extern crate bytes;
extern crate mio;
extern crate tokio_core;
extern crate tokio_io;
extern crate futures;

pub mod socket;
pub mod packet;
pub mod tokio;
pub mod util;