Initial rewrite of NDP proxy
[project/odhcpd.git] / src / odhcpd.h
index 010cd9e..1fe775e 100644 (file)
@@ -61,13 +61,14 @@ extern struct list_head leases;
 struct odhcpd_event {
        struct uloop_fd uloop;
        void (*handle_dgram)(void *addr, void *data, size_t len,
 struct odhcpd_event {
        struct uloop_fd uloop;
        void (*handle_dgram)(void *addr, void *data, size_t len,
-                       struct interface *iface);
+                       struct interface *iface, void *dest_addr);
 };
 
 
 struct odhcpd_ipaddr {
        struct in6_addr addr;
        uint8_t prefix;
 };
 
 
 struct odhcpd_ipaddr {
        struct in6_addr addr;
        uint8_t prefix;
+       uint8_t dprefix;
        bool has_class;
        uint16_t class;
        uint32_t preferred;
        bool has_class;
        uint16_t class;
        uint32_t preferred;
@@ -117,8 +118,13 @@ struct interface {
        // DHCPv4
        struct odhcpd_event dhcpv6_event;
        struct odhcpd_event dhcpv4_event;
        // DHCPv4
        struct odhcpd_event dhcpv6_event;
        struct odhcpd_event dhcpv4_event;
+       struct odhcpd_event ndp_event;
        struct list_head dhcpv4_assignments;
 
        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;
        // Services
        enum odhcpd_mode ra;
        enum odhcpd_mode dhcpv6;
@@ -152,11 +158,13 @@ struct interface {
        uint8_t *search;
        size_t search_len;
 
        uint8_t *search;
        size_t search_len;
 
-       char* static_ndp;
-       size_t static_ndp_len;
+       void *dhcpv6_raw;
+       size_t dhcpv6_raw_len;
 
        char *upstream;
        size_t upstream_len;
 
        char *upstream;
        size_t upstream_len;
+
+       char *filter_class;
 };
 
 extern struct list_head interfaces;
 };
 
 extern struct list_head interfaces;