mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 01:39:44 +08:00
Networking: More detangling of IPv6 logic. Next steps will be more invasive and will get moved to a branch
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user