chiark / gitweb /
sd-rtnl: fix reading of nla type
[elogind.git] / src / libsystemd / sd-rtnl / local-addresses.h
index d3dff8b8b0f2a1d7a67b09f052e3db6470ff08be..b1ed6341f6e76d384a08f4102e292089f6461b6a 100644 (file)
 #include <assert.h>
 #include <sys/socket.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);