diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-07 03:39:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-07 03:39:32 +0100 |
commit | a33dece5f8cce7f1946263bec76068ef84abc07b (patch) | |
tree | 4bc528464883d362e9d3049bcf7df48df913ae4d /src/libsystemd-rtnl/rtnl-util.h | |
parent | a2cdd907d1ffd314d1f15d83851610231f69eb61 (diff) |
rtnl: headers in src/systemd/ may not include internal headers
Hence including "util.h" from sd-rtnl.h is not OK. Let's minimize our
headers we pull in a bit.
Diffstat (limited to 'src/libsystemd-rtnl/rtnl-util.h')
-rw-r--r-- | src/libsystemd-rtnl/rtnl-util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libsystemd-rtnl/rtnl-util.h b/src/libsystemd-rtnl/rtnl-util.h index 902ff646cf..ba0f71f944 100644 --- a/src/libsystemd-rtnl/rtnl-util.h +++ b/src/libsystemd-rtnl/rtnl-util.h @@ -23,7 +23,14 @@ #include <netinet/ether.h> +#include "util.h" #include "sd-rtnl.h" int rtnl_set_link_name(sd_rtnl *rtnl, int ifindex, const char *name); int rtnl_set_link_properties(sd_rtnl *rtnl, int ifindex, const struct ether_addr *mac, unsigned mtu); + +DEFINE_TRIVIAL_CLEANUP_FUNC(sd_rtnl*, sd_rtnl_unref); +DEFINE_TRIVIAL_CLEANUP_FUNC(sd_rtnl_message*, sd_rtnl_message_unref); + +#define _cleanup_sd_rtnl_unref_ _cleanup_(sd_rtnl_unrefp) +#define _cleanup_sd_rtnl_message_unref_ _cleanup_(sd_rtnl_message_unrefp) |