ipcon_sys/lib.rs
1//! # ipcon-sys Module
2//! IPCON (IPC Over Netlink) is a packet type IPC mechanism by using Netlink. A simple (but a
3//! little old) explanation can be found at:
4//!
5//! <https://github.com/saimizi/libipcon/blob/master/Document/Tutorial.txt>.
6//!
7//! ipcon-sys provides the rust binding for it. Following are required to use this module:
8//!
9//! * libipcon library
10//! * ipcon kernel module
11
12pub mod ipcon;
13
14#[cfg(feature = "async")]
15pub mod ipcon_async;
16
17pub mod ipcon_msg;
18
19pub mod ipcon_error;