net/tcp: Generalize Juho Grundstrom's IPv4 change for IPv6 as well.
This commit is contained in:
parent
13058858f2
commit
3a2d0a06f4
@ -342,11 +342,41 @@ static inline bool psock_send_addrchck(FAR struct tcp_conn_s *conn)
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if !defined(CONFIG_NET_ICMPv6_NEIGHBOR)
|
/* For historical reasons, we will return true if both the ARP and the
|
||||||
return (neighbor_findentry(conn->u.ipv6.raddr) != NULL);
|
* routing table are disabled.
|
||||||
#else
|
*/
|
||||||
return true;
|
|
||||||
|
bool ret = true;
|
||||||
|
#ifdef CONFIG_NET_ROUTE
|
||||||
|
net_ipv6addr_t router;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(CONFIG_NET_ICMPv6_NEIGHBOR)
|
||||||
|
if (neighbor_findentry(conn->u.ipv6.raddr) != NULL)
|
||||||
|
{
|
||||||
|
/* Return true if the address was found in the ARP table */
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, return false */
|
||||||
|
|
||||||
|
ret = false;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_NET_ROUTE
|
||||||
|
if (net_ipv6_router(conn->u.ipv6.raddr, router) == OK)
|
||||||
|
{
|
||||||
|
/* Return true if the address was found in the routing table */
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, return false */
|
||||||
|
|
||||||
|
ret = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_NET_IPv6 */
|
#endif /* CONFIG_NET_IPv6 */
|
||||||
}
|
}
|
||||||
|
@ -292,11 +292,41 @@ static inline bool psock_send_addrchck(FAR struct tcp_conn_s *conn)
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if !defined(CONFIG_NET_ICMPv6_NEIGHBOR)
|
/* For historical reasons, we will return true if both the ARP and the
|
||||||
return (neighbor_findentry(conn->u.ipv6.raddr) != NULL);
|
* routing table are disabled.
|
||||||
#else
|
*/
|
||||||
return true;
|
|
||||||
|
bool ret = true;
|
||||||
|
#ifdef CONFIG_NET_ROUTE
|
||||||
|
net_ipv6addr_t router;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(CONFIG_NET_ICMPv6_NEIGHBOR)
|
||||||
|
if (neighbor_findentry(conn->u.ipv6.raddr) != NULL)
|
||||||
|
{
|
||||||
|
/* Return true if the address was found in the ARP table */
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, return false */
|
||||||
|
|
||||||
|
ret = false;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_NET_ROUTE
|
||||||
|
if (net_ipv6_router(conn->u.ipv6.raddr, router) == OK)
|
||||||
|
{
|
||||||
|
/* Return true if the address was found in the routing table */
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, return false */
|
||||||
|
|
||||||
|
ret = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_NET_IPv6 */
|
#endif /* CONFIG_NET_IPv6 */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user