Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | route: add support for getting permanent mac address of link | Antonio Prcela | 2024-09-12 | 1 | -0/+1 |
| | | | | https://github.com/thom311/libnl/pull/404 | ||||
* | build: cleanup defining SYSCONFDIR on command line | Thomas Haller | 2024-05-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Optimally, ./configure defines things in include/config.h. However, that does not work well with defines that contain path names (see [1]). Continue to use "-D" command line option. However, factor out the definition to one place. Also, rename from SYSCONFDIR to _NL_SYSCONFDIR_LIBNL. Note that "src_lib_libnl_cli_3_la_CPPFLAGS" defined to -DSYSCONFDIR=\"$(sysconfdir)\", without the "libnl" subdirectory. In this case, the define was never used. The change doesn't matter. [1] https://www.gnu.org/software/autoconf/manual/autoconf-2.63/html_node/Installation-Directory-Variables.html | ||||
* | route: move "struct rtnl_nexthop" to "nl-priv-dynamic-route" | Thomas Haller | 2024-05-17 | 1 | -15/+0 |
| | | | | | | | | rtnl_route_get_nexthops() returns the list of nexthops, but that is not usable without access to the rtnh_list field. We want to use that from tests. Move to another header (but still not public API). | ||||
* | clang-format: reformat files with new format | Thomas Haller | 2023-08-17 | 1 | -19/+19 |
| | | | | $ ./tools/clang-format.sh | ||||
* | include: drop "netlink-private/netlink.h" and move declarations | Thomas Haller | 2023-08-02 | 1 | -0/+29 |
| | |||||
* | include: split and drop "netlink-private/types.h" | Thomas Haller | 2023-08-02 | 1 | -0/+162 |
Move all the declarations from "netlink-private/types.h" to places closer to where they are used. |