ndp: don't trigger IPv6 ping when neighbor entry is invalid
[project/odhcpd.git] / src / odhcpd.h
index ceef0bf..4ddadbe 100644 (file)
@@ -97,6 +97,7 @@ struct config {
        bool legacy;
        char *dhcp_cb;
        char *dhcp_statefile;
+       int log_level;
 } config;
 
 
@@ -149,13 +150,17 @@ struct interface {
        bool always_rewrite_dns;
        bool ra_not_onlink;
        bool ra_advrouter;
+       bool ra_useleasetime;
        bool no_dynamic_dhcp;
 
+       // RA
        int learn_routes;
        int default_router;
        int managed;
        int route_preference;
        int ra_maxinterval;
+       int ra_mininterval;
+       int ra_lifetime;
 
        // DHCPv4
        struct in_addr dhcpv4_start;
@@ -198,7 +203,8 @@ 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_linklocal_interface_address(int ifindex, struct in6_addr *lladdr);
+int odhcpd_get_interface_dns_addr(const struct interface *iface,
+               struct in6_addr *addr);
 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]);
@@ -221,6 +227,9 @@ void odhcpd_bmemcpy(void *av, const void *bv, size_t bits);
 
 int config_parse_interface(void *data, size_t len, const char *iname, bool overwrite);
 
+void ndp_handle_addr6_dump(void);
+void ndp_rqs_addr6_dump(void);
+
 #ifdef WITH_UBUS
 int init_ubus(void);
 const char* ubus_get_ifname(const char *name);