diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2019-02-07 13:18:40 +0100 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2019-02-07 17:39:46 +0100 |
commit | a54cee0d033ada75724b18a9350103a02e0ba956 (patch) | |
tree | 6d27339b2653e3cbb7e312cf05b3410a1efb5400 /src/odhcpd.h | |
parent | 9f25dd8af76dc30e54ddcbb4a284058e598951d5 (diff) |
netlink: rework handling of netlink messages
Multiple logical OpenWrt interfaces can be stacked on top of the same
Linux device. As such netlink events for addresses/routes/ifindex changes
need to be propagated to the different logical OpenWrt interfaces
which use the Linux device as reported in the netlink message.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'src/odhcpd.h')
-rw-r--r-- | src/odhcpd.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/odhcpd.h b/src/odhcpd.h index a1d89e8..f32f34b 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -263,7 +263,6 @@ ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest, const struct interface *iface); 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]); struct interface* odhcpd_get_interface_by_index(int ifindex); |