neli
neli copied to clipboard
Rust type safe netlink library
The transition to syn 2.x involved addressing several breaking changes from syn 1.x. Some of these changes were straightforward, such as the replacement of Tokens Add with Plus, Colon2 with...
**Would adding this feature cause a breaking change?** Yes - it would require modifying `neli::consts::rtnl::RtTable` **Is your feature request related to a problem? Please describe.** Yes - `rtnetlink` supports table...
I would like to implement something close to [`ip route save`](https://www.man7.org/linux/man-pages/man8/ip-route.8.html) command, store all the contents of a routing table and clear it. For that purpose I have implemented a...
ifa_index in ifaddrmsg should be unsigned per https://man7.org/linux/man-pages/man7/rtnetlink.7.html Current code is using libc:c_int which is signed. https://github.com/jbaublitz/neli/blob/e50030dd22b2ad5390eed97445dbcc016e6bcd25/src/rtnl.rs#L93 Suggest switch to c_uint