Rust crate (library) for creating and managing network bridges on Linux.
One can create a bridge using a simple builder pattern:
```rust use network_bridge::BridgeBuilder;
let bridge = BridgeBuilder::new("bridge_name") .interface("eth0") .interface("eth1") .build(); ```
In the future, one will be able to set more properties of the bridge using this crate.
(Note that if using Rust 2015, an extern crate
declaration is required.)
This crate is licensed under:
at your option.
Please note that this crate is under heavy development, we will use sematic
versioning, but during the 0.1.*
phase, no guarantees are made about
backwards compatibility.
Regardless, check back often and thanks for taking a look!