1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
// SPDX-License-Identifier: MIT
pub mod address;
pub mod link;
pub mod neighbour;
pub mod neighbour_table;
pub mod nsid;
pub mod route;
pub mod rule;
pub mod tc;
mod message;
#[cfg(test)]
mod tests;
pub(crate) mod ip;
#[cfg(any(target_os = "linux", target_os = "fuchsia"))]
mod address_family_linux;
#[cfg(any(target_os = "linux", target_os = "fuchsia"))]
pub use self::address_family_linux::AddressFamily;
#[cfg(target_os = "freebsd")]
mod address_family_freebsd;
#[cfg(target_os = "freebsd")]
pub use self::address_family_freebsd::AddressFamily;
#[cfg(not(any(
target_os = "linux",
target_os = "fuchsia",
target_os = "freebsd",
)))]
mod address_family_fallback;
#[cfg(not(any(
target_os = "linux",
target_os = "fuchsia",
target_os = "freebsd",
)))]
pub use self::address_family_fallback::AddressFamily;
pub use self::ip::IpProtocol;
pub use self::message::{RouteNetlinkMessage, RouteNetlinkMessageBuffer};
/// The `netlink-packet-route` crate is designed to abstract Netlink route
/// protocol(`rtnetlink`) packet into Rust data types. The goal of this crate is
/// saving netlink user from reading Kernel Netlink codes.
///
/// This crate grouped Netlink route protocol into these modules:
/// * `link`: NIC interface, similar to to `ip link` command.
/// * `address`: IP address, similar to `ip address` command.
/// * `route`: Route, similar to `ip route` command.
/// * `rule`: Route rule, similar to `ip rule` command.
/// * `tc`: Traffic control, similar to `tc` command.
/// * `neighbour`: Neighbour, similar to `ip neighbour` command.
/// * `neighbour_table`: Neighbour table, similar to `ip ntable` command.
/// * `nsid`: Namespace, similar to `ip netns` command.
///
/// At the top level of this crate, we also provide:
/// * [AddressFamily]
///
/// Normally, you should use [`rtnetlink`][rtnetlink_url] instead of using this
/// crate directly.
///
/// [rtnetlink_url]: https://docs.rs/rtnetlink
#[macro_use]
extern crate netlink_packet_utils;
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;