X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fodhcpd.h;h=2cadccb253a6e7fb7bad0c91bdc0d2d5dd577512;hp=2b7829ef65c1d4a19759a5a33eb4efe3513310b5;hb=f13c624c16a8e3fd30bb47f9ed614c7e2bd6d75e;hpb=79d005edf35a363e2d254e37ca2edcd743c2b4f6;ds=sidebyside diff --git a/src/odhcpd.h b/src/odhcpd.h index 2b7829e..2cadccb 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); }; @@ -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; @@ -133,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; @@ -143,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; @@ -153,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;