winroute

This crate is a utilities of high level of interface for manipulating and observing Windows's routing table

3 unstable releases

0.2.0 Feb 14, 2023
0.1.2 Feb 7, 2023
0.1.1 Jan 9, 2023
0.1.0 Jan 9, 2023

#1778 in Parser implementations

Download history 70/week @ 2024-07-20 197/week @ 2024-07-27 128/week @ 2024-08-03 99/week @ 2024-08-10 48/week @ 2024-08-17 21/week @ 2024-08-24 43/week @ 2024-08-31 32/week @ 2024-09-07 39/week @ 2024-09-14 31/week @ 2024-09-21 39/week @ 2024-09-28 39/week @ 2024-10-05 19/week @ 2024-10-12 38/week @ 2024-10-19 11/week @ 2024-10-26 24/week @ 2024-11-02

95 downloads per month

Apache-2.0

33KB
588 lines

WinRoute

This crate is a utilities of high level of interface for manipulating and observing Windows's routing table

Examples

Manage routing table

let manager = RouteManager::new()?;
let new_route = Route::new("223.6.6.6".parse().unwrap(), 32).metric(1);
// add route
if let Err(e) = manager.add_route(&new_route) {
    eprintln!("{e}");
}
// delete route
if let Err(e) = manager.delete_route(&new_route) {
    eprintln!("{e}");
}

Listen a table change event

let manager = RouteManager::new()?;
let recvier = manager.subscribe_route_change();
let ma = Arc::new(manager);
let mb = ma.clone();

// start a thread to driven event loop, also can use async task to run this
std::thread::spawn(move || loop {
    ma.poll().unwrap();
});

// create a new route
let new_route = Route::new("223.6.6.6".parse().unwrap(), 32);
// add route to system
mb.add_route(&new_route)?;

loop {
    // listeing on route change event
    let event = recvier.recv().unwrap();
    println!("{:?}", event);
}

Features

  • serializable: This feature is enabled by default, it implemented serde's Serialize and Deserialize, this feature requires an additional dependency on serde

Dependencies

~310–680KB