#routes #ip #networking

net-route

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

25 releases

new 0.4.3 May 15, 2024
0.4.2 Mar 8, 2024
0.4.1 Feb 26, 2024
0.2.8 Nov 4, 2023
0.2.0 Oct 18, 2022

#1237 in Network programming

Download history 12/week @ 2024-01-19 7/week @ 2024-01-26 26/week @ 2024-02-02 171/week @ 2024-02-09 134/week @ 2024-02-16 461/week @ 2024-02-23 86/week @ 2024-03-01 198/week @ 2024-03-08 93/week @ 2024-03-15 45/week @ 2024-03-22 82/week @ 2024-03-29 78/week @ 2024-04-05 53/week @ 2024-04-12 21/week @ 2024-04-19 28/week @ 2024-04-26 14/week @ 2024-05-03

128 downloads per month
Used in 3 crates

MIT license

77KB
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–16MB
~187K SLoC