mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +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:
+2
-2
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user