chiark / gitweb /
sd-bus: don't fail when querying creds and dbus1 refuses to tell us the selinux context
[elogind.git] / src / libsystemd / sd-rtnl / local-addresses.h
index cc26fc479b3dd93a99c0c7ff0f61536ea768b7e1..b1ed6341f6e76d384a08f4102e292089f6461b6a 100644 (file)
 #include <assert.h>
 #include <sys/socket.h>
 
-#include "socket-util.h"
+#include "sd-rtnl.h"
+#include "in-addr-util.h"
 
 struct local_address {
-        int ifindex;
-        unsigned char family, scope;
+        int family, ifindex;
+        unsigned char scope;
         union in_addr_union address;
 };
 
-int local_addresses(struct local_address **ret);
+int local_addresses(sd_rtnl *rtnl, int ifindex, struct local_address **ret);