X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fodhcpd.h;h=fd43dfe3ba206762beaa7e48a7dd3e279cf578da;hp=ab24674e5f152c0e301333dbaf04160b2c3acbb6;hb=c5cb11650a1f7ff321b4ac190c8be7f533cf9636;hpb=8b33974cfae233ef6ad764051a3194db29c7ff11 diff --git a/src/odhcpd.h b/src/odhcpd.h index ab24674..fd43dfe 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -62,6 +62,7 @@ struct odhcpd_event { struct uloop_fd uloop; void (*handle_dgram)(void *addr, void *data, size_t len, struct interface *iface, void *dest_addr); + void (*handle_error)(int error); }; @@ -185,7 +186,7 @@ ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest, const struct interface *iface); ssize_t odhcpd_get_interface_addresses(int ifindex, struct odhcpd_ipaddr *addrs, size_t cnt); -int odhcpd_get_preferred_interface_address(int ifindex, struct in6_addr *addr); +int odhcpd_get_linklocal_interface_address(int ifindex, struct in6_addr *lladdr); struct interface* odhcpd_get_interface_by_name(const char *name); int odhcpd_get_interface_config(const char *ifname, const char *what); int odhcpd_get_mac(const struct interface *iface, uint8_t mac[6]);