Fix DHCPv4 static leases (thanks arnd)
[project/odhcpd.git] / src / odhcpd.h
index 2b7829e..dfaec9b 100644 (file)
@@ -120,6 +120,10 @@ struct interface {
        struct odhcpd_event dhcpv4_event;
        struct list_head dhcpv4_assignments;
 
+       // Managed PD
+       char dhcpv6_pd_manager[128];
+       struct in6_addr dhcpv6_pd_cer;
+
        // Services
        enum odhcpd_mode ra;
        enum odhcpd_mode dhcpv6;
@@ -153,11 +157,16 @@ struct interface {
        uint8_t *search;
        size_t search_len;
 
+       void *dhcpv6_raw;
+       size_t dhcpv6_raw_len;
+
        char* static_ndp;
        size_t static_ndp_len;
 
        char *upstream;
        size_t upstream_len;
+
+       char *filter_class;
 };
 
 extern struct list_head interfaces;