Expand description
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 toip linkcommand.address: IP address, similar toip addresscommand.route: Route, similar toip routecommand.rule: Route rule, similar toip rulecommand.tc: Traffic control, similar totccommand.neighbour: Neighbour, similar toip neighbourcommand.neighbour_table: Neighbour table, similar toip ntablecommand.nsid: Namespace, similar toip netnscommand.
At the top level of this crate, we also provide:
Normally, you should use rtnetlink instead of using this
crate directly.