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 <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2019-05-20 20:45:49 +02:00 committed by Jukka Rissanen
commit ca5d24d2cd

View file

@ -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;
};