#routes #ip #networking

net-route

This crate provides a cross-platform interface for manipulating the routing table

24 releases

0.4.2 Mar 8, 2024
0.3.0 Feb 23, 2024
0.2.8 Nov 4, 2023
0.2.5 Dec 21, 2022
0.2.0 Oct 18, 2022

#1063 in Network programming

Download history 72/week @ 2024-01-07 2/week @ 2024-01-14 14/week @ 2024-01-21 14/week @ 2024-01-28 28/week @ 2024-02-04 272/week @ 2024-02-11 246/week @ 2024-02-18 305/week @ 2024-02-25 166/week @ 2024-03-03 86/week @ 2024-03-10 76/week @ 2024-03-17 38/week @ 2024-03-24 111/week @ 2024-03-31 62/week @ 2024-04-07 37/week @ 2024-04-14 9/week @ 2024-04-21

230 downloads per month
Used in 3 crates

MIT license

76KB
2K SLoC

Rust 1K SLoC // 0.0% comments C 747 SLoC // 0.1% comments

Net Route

This project aims to provide a high level interface for manipulating and observing the routing table on a variety of platforms.


lib.rs:

This project aims to provide a high level interface for manipulating and observing the routing table on a variety of platforms.

Examples

Adding a route

// route traffic destined for 10.14.0.0/24 to 192.1.2.1 using interface 9
let handle = Handle::new()?;
let route = Route::new("10.14.0.0".parse().unwrap(), 24)
    .with_ifindex(9)
    .with_gateway("192.1.2.1".parse().unwrap());
handle.add(&route).await

Listening to changes in the routing table

let handle = Handle::new()?;
let stream = handle.route_listen_stream();
futures::pin_mut!(stream);
while let Some(event) = stream.next().await {
    println!("{:?}", event);
}

Dependencies

~4–18MB
~195K SLoC