netsim 0.3.0

Run tests in network-isolated threads. Intercept and meddle with their packets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! IP devices for creating networks with.

mod channel;
mod hub;
mod nat;

pub use self::{
    channel::{BiChannel, IpChannel},
    hub::IpHub,
    nat::{Nat, NatBuilder},
};