router: add support for router address
[project/odhcpd.git] / src / odhcpd.h
index 6b90831..2cadccb 100644 (file)
@@ -61,7 +61,7 @@ extern struct list_head leases;
 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);
 };
 
 
@@ -123,8 +123,6 @@ struct interface {
        // Managed PD
        char dhcpv6_pd_manager[128];
        struct in6_addr dhcpv6_pd_cer;
-       void *dhcpv6_raw;
-       size_t dhcpv6_raw_len;
 
        // Services
        enum odhcpd_mode ra;
@@ -139,6 +137,7 @@ struct interface {
        bool ignore;
        bool always_rewrite_dns;
        bool ra_not_onlink;
+       bool ra_advrouter;
        bool no_dynamic_dhcp;
 
        int learn_routes;
@@ -149,6 +148,8 @@ struct interface {
        // DHCPv4
        struct in_addr dhcpv4_start;
        struct in_addr dhcpv4_end;
+       struct in_addr *dhcpv4_router;
+       size_t dhcpv4_router_cnt;
        struct in_addr *dhcpv4_dns;
        size_t dhcpv4_dns_cnt;
        uint32_t dhcpv4_leasetime;
@@ -159,11 +160,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;