Ensure netlib will not be broken when setip will not bring the network up anymore

This commit is contained in:
Sebastien Lorquet 2017-05-19 17:13:27 +02:00
parent 0bcd50d7a1
commit 60ca4a1ef4

View File

@ -159,6 +159,11 @@ static void netest_initialize(void)
netlib_set_ipv6netmask("eth0",
(FAR const struct in6_addr *)g_ipv6_netmask);
/* New versions of netlib_set_ipv6addr will not bring the network up,
* So ensure the network is really up at this point. */
netlib_ifup("eth0");
#endif /* CONFIG_NET_ICMPv6_AUTOCONF */
#else /* CONFIG_EXAMPLES_NETTEST_IPv6 */