Only update resolv.conf if changed (avoid logspam)
[project/netifd.git] / system.h
index 701e44a..acfaa37 100644 (file)
--- a/system.h
+++ b/system.h
@@ -16,6 +16,7 @@
 
 #include <sys/time.h>
 #include <sys/socket.h>
+#include <arpa/inet.h>
 #include "device.h"
 #include "interface-ip.h"
 
@@ -49,6 +50,22 @@ struct bridge_config {
        int max_age;
 };
 
+static inline int system_get_addr_family(unsigned int flags)
+{
+       if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
+               return AF_INET6;
+       else
+               return AF_INET;
+}
+
+static inline int system_get_addr_len(unsigned int flags)
+{
+       if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
+               return sizeof(struct in_addr);
+       else
+               return sizeof(struct in6_addr);
+}
+
 int system_init(void);
 
 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
@@ -82,4 +99,8 @@ int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
 
 time_t system_get_rtime(void);
 
+void system_fd_set_cloexec(int fd);
+
+int system_update_ipv6_mtu(struct device *device, int mtu);
+
 #endif