X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fodhcpd.h;h=b2b38dc8d47387dbd693bc22f4f87e6671db9796;hp=6b90831c8410075756b07f30c6f1fd0f7005405e;hb=1bbf34a1df3e16865b3b9330b338952076bc26f9;hpb=87b974a21add279ce7f7be31f7b22f7ea97949c3;ds=inline diff --git a/src/odhcpd.h b/src/odhcpd.h index 6b90831..b2b38dc 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -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; @@ -159,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;