From ca5d24d2cd5722c617ff2e99666b113f4b9ffdfe Mon Sep 17 00:00:00 2001 From: Tomasz Bursztyka Date: Mon, 20 May 2019 20:45:49 +0200 Subject: [PATCH] net/iface: Remove useless attributes in net_if_ipv6 structure DAD use dad_count attribute in struct net_if_addr, since DAD is ran on each and every ipv6 unicast address. Fixes #8728 Signed-off-by: Tomasz Bursztyka --- include/net/net_if.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/net/net_if.h b/include/net/net_if.h index 9d579949d65..1ff0655f762 100644 --- a/include/net/net_if.h +++ b/include/net/net_if.h @@ -234,11 +234,6 @@ struct net_if_ipv6 { /** IPv6 hop limit */ u8_t hop_limit; -#if defined(CONFIG_NET_IPV6_DAD) - /** IPv6 current duplicate address detection count */ - u8_t dad_count; -#endif /* CONFIG_NET_IPV6_DAD */ - /** RS count */ u8_t rs_count; };