Networking: More detangling of IPv6 logic. Next steps will be more invasive and will get moved to a branch

This commit is contained in:
Gregory Nutt
2015-01-16 08:51:18 -06:00
parent b1a7113fdd
commit fe8b3c5220
8 changed files with 567 additions and 176 deletions
+2 -2
View File
@@ -223,9 +223,9 @@ int arp_send(in_addr_t ipaddr)
/* Get the device that can route this request */
#ifdef CONFIG_NET_MULTILINK
dev = netdev_findbyaddr(g_allzeroaddr, ipaddr);
dev = netdev_findby_ipv4addr(g_allzeroaddr, ipaddr);
#else
dev = netdev_findbyaddr(ipaddr);
dev = netdev_findby_ipv4addr(ipaddr);
#endif
if (!dev)
{