X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fodhcpd.h;h=727c638f1680807c70a2928514473e97afa83f84;hp=fb3db37f80650a4c575a0cb5a2d8742f56033263;hb=58128dfdc336658477c248243af8c74a17d6e468;hpb=78c5e4b032c420852abc2a9e1e6f429a4d803c21 diff --git a/src/odhcpd.h b/src/odhcpd.h index fb3db37..727c638 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -68,6 +68,8 @@ struct odhcpd_event { struct odhcpd_ipaddr { struct in6_addr addr; uint8_t prefix; + bool has_class; + uint16_t class; uint32_t preferred; uint32_t valid; }; @@ -104,7 +106,6 @@ struct interface { int ifindex; char ifname[IF_NAMESIZE]; char name[IF_NAMESIZE]; - bool inuse; // Runtime data struct uloop_timeout timer_rs; @@ -124,6 +125,7 @@ struct interface { enum odhcpd_mode dhcpv4; // Config + bool inuse; bool external; bool master; bool ignore; @@ -186,11 +188,15 @@ time_t odhcpd_time(void); ssize_t odhcpd_unhexlify(uint8_t *dst, size_t len, const char *src); void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len); -int config_parse_interface(struct blob_attr *b, const char *iname, bool overwrite); +int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite); +#ifdef WITH_UBUS +int init_ubus(void); const char* ubus_get_ifname(const char *name); void ubus_apply_network(void); bool ubus_has_prefix(const char *name, const char *ifname); +bool ubus_get_class(const char *ifname, const struct in6_addr *addr, uint16_t *pclass); +#endif // Exported module initializers @@ -198,9 +204,10 @@ int init_router(void); int init_dhcpv6(void); int init_dhcpv4(void); int init_ndp(void); -int init_ubus(void); int setup_router_interface(struct interface *iface, bool enable); int setup_dhcpv6_interface(struct interface *iface, bool enable); int setup_ndp_interface(struct interface *iface, bool enable); int setup_dhcpv4_interface(struct interface *iface, bool enable); + +void odhcpd_reload(void);