Home
last modified time | relevance | path

Searched refs:netif_hint (Results 1 – 7 of 7) sorted by relevance

/btstack/3rd-party/lwip/core/src/include/lwip/
H A Dip.h67 #define IP_PCB_NETIFHINT ;struct netif_hint netif_hints
254 #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ argument
256 ip6_output_hinted(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif_hint) : \
257 ip4_output_hinted(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif_hint))
285 #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ argument
286 ip4_output_hinted(p, src, dest, ttl, tos, proto, netif_hint)
305 #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ argument
306 ip6_output_hinted(p, src, dest, ttl, tos, proto, netif_hint)
H A Dip6.h71 u8_t hl, u8_t tc, u8_t nexth, struct netif_hint *netif_hint);
H A Dip4.h80 u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint);
H A Dnetif.h253 struct netif_hint { struct
392 struct netif_hint *hints;
/btstack/3rd-party/lwip/core/src/core/ipv4/
H A Dip4.c1066 u8_t ttl, u8_t tos, u8_t proto, struct netif_hint *netif_hint) argument
1080 NETIF_SET_HINTS(netif, netif_hint);
/btstack/3rd-party/lwip/core/src/core/ipv6/
H A Dip6.c1350 u8_t hl, u8_t tc, u8_t nexth, struct netif_hint *netif_hint) argument
1383 NETIF_SET_HINTS(netif, netif_hint);
/btstack/3rd-party/lwip/core/src/core/
H A Dtcp_out.c1942 NETIF_SET_HINTS(netif, LWIP_CONST_CAST(struct netif_hint*, &(pcb->netif_hints))); in tcp_output_control_segment()