odhcpd.h: fix alignment style
[project/odhcpd.git] / src / odhcpd.h
index fb78ec0..7c0c3b9 100644 (file)
@@ -57,6 +57,7 @@
 #define ALL_IPV6_ROUTERS {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02}}}
 
+#define IN6_IS_ADDR_ULA(a) (((a)->s6_addr32[0] & htonl(0xfe000000)) == htonl(0xfc000000))
 
 struct interface;
 struct nl_sock;
@@ -96,6 +97,7 @@ struct config {
        bool legacy;
        char *dhcp_cb;
        char *dhcp_statefile;
+       int log_level;
 } config;
 
 
@@ -155,6 +157,7 @@ struct interface {
        int managed;
        int route_preference;
        int ra_maxinterval;
+       int ra_lifetime;
 
        // DHCPv4
        struct in_addr dhcpv4_start;