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
@@ -102,9 +102,9 @@ void netdev_txnotify(const net_ipaddr_t ripaddr)
/* Find the device driver that serves the subnet of the remote address */
#ifdef CONFIG_NET_MULTILINK
dev = netdev_findbyaddr(lipaddr, ripaddr);
dev = netdev_findby_ipv4addr(lipaddr, ripaddr);
#else
dev = netdev_findbyaddr(ripaddr);
dev = netdev_findby_ipv4addr(ripaddr);
#endif
if (dev && dev->d_txavail)