network_bridge

Crates.ionetwork_bridge
lib.rsnetwork_bridge
version0.1.1
created_at2018-09-13 16:22:39.855744+00
updated_at2018-12-23 16:33:43.811475+00
descriptionLibrary for creating networking bridges
homepage
repositoryhttps://github.com/levex/network-bridge-rs
max_upload_size
id84550
size14,740
Levente Kurusa (levex)

documentation

README

network-bridge Build Status

Rust crate (library) for creating and managing network bridges on Linux.

Example

One can create a bridge using a simple builder pattern:

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.)

Disclaimer

This crate is licensed under:

  • MIT License (see LICENSE-MIT); or
  • Apache 2.0 License (see LICENSE-Apache-2.0),

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!

Commit count: 0

cargo fmt