linkem 0.2.1

A realistic network emulation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc(issue_tracker_base_url = "https://github.com/chainbound/msg-rs/issues/")]
#![cfg_attr(docsrs, feature(doc_cfg))]

//! In-process network emulation for Linux, powered by `rtnetlink`.

macro_rules! cfg_linux_modules {
    ($($mod:ident),* $(,)?) => {
        $(
            #[cfg(target_os = "linux")]
            pub mod $mod;
        )*
    };
}
cfg_linux_modules!(dynch, ip, namespace, network, tc, wrappers);