Skip to content

Rust crate for managing network bridges

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

levex/network-bridge-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

About

Rust crate for managing network bridges

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages