Searched refs:ip_route (Results 1 – 7 of 7) sorted by relevance
/third_party/lwip/src/include/lwip/ |
D | ip.h | 290 #define ip_route(src, dest, group) \ macro 295 #define ip_route(src, dest) \ macro 323 #define ip_route(src, dest) \ macro 343 #define ip_route(src, dest) \ macro 354 (netif) = ip_route(src, dest); \
|
/third_party/lwip/src/core/ |
D | raw.c | 400 netif = ip_route(&pcb->local_ip, ipaddr, group); in raw_sendto() 402 netif = ip_route(&pcb->local_ip, ipaddr); in raw_sendto()
|
D | udp.c | 627 netif = ip_route(&pcb->local_ip, dst_ip, group); 629 netif = ip_route(&pcb->local_ip, dst_ip);
|
D | tcp.c | 1265 netif = ip_route(&pcb->local_ip, &pcb->remote_ip, group); 1267 netif = ip_route(&pcb->local_ip, &pcb->remote_ip);
|
D | tcp_out.c | 148 return ip_route(src, dst, group); in tcp_route() 150 return ip_route(src, dst); in tcp_route()
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 483 tcp_eff_send_mss_netif(sendmss, ip_route(src, dest, group), dest) 486 tcp_eff_send_mss_netif(sendmss, ip_route(src, dest), dest)
|
/third_party/lwip/ |
D | CHANGELOG | 888 * ip4.c: fixed the IPv4 part of bug #43904 (ip_route() must detect linkup status) 1080 * ip4.c: fixed bug #39514 ip_route() may return an IPv6-only interface 3359 letting ip_route only use netifs that are up.
|