/vbox/src/VBox/Devices/Network/lwip/src/include/ipv6/lwip/ |
H A D | ip.h | 49 /* This is passed as the destination address to ip_output_if (not 86 err_t ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest,
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv6/ |
H A D | ip6.c | 253 /* ip_output_if: 261 ip_output_if (struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, function 306 LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c (len %"U16_F")\n", netif->name[0], netif->name[1], p->tot_len)); 311 PERF_STOP("ip_output_if"); 317 * Simple interface to ip_output_if. It finds the outgoing network interface and 318 * calls upon ip_output_if to do the actual work. 334 return ip_output_if (p, src, dest, ttl, proto, netif);
|
H A D | icmp6.c | 103 ip_output_if (p, &(iphdr->src), IP_HDRINCL,
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | ip.h | 49 /* This is passed as the destination address to ip_output_if (not 223 ip_output_if(p, (src), (dest), ttl, tos, proto, netif)) 241 ip_output_if(p, src, dest, ttl, tos, proto, netif)
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv4/ |
H A D | icmp.c | 115 ip_output_if(p, &(iphdr->src), IP_HDRINCL,
|
H A D | ip.c | 384 ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, function 438 LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c%"U16_F"\n", netif->name[0], netif->name[1], netif->num)); 447 * Simple interface to ip_output_if. It finds the outgoing network 448 * interface and calls upon ip_output_if to do the actual work. 465 return ip_output_if(p, src, dest, ttl, tos, proto, netif);
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | raw.c | 246 err = ip_output_if (q, src_ip, ipaddr, pcb->ttl, pcb->tos, pcb->protocol, netif);
|
H A D | udp.c | 377 LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDPLITE,)\n")); 378 err = ip_output_if(q, src_ip, &pcb->remote_ip, pcb->ttl, pcb->tos, IP_PROTO_UDPLITE, netif); 393 LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDP,)\n")); 395 err = ip_output_if(q, src_ip, &pcb->remote_ip, pcb->ttl, pcb->tos, IP_PROTO_UDP, netif);
|
/vbox/src/VBox/Devices/Network/lwip/src/include/ipv4/lwip/ |
H A D | ip.h | 49 err_t ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, 60 /* This is passed as the destination address to ip_output_if (not
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/ipv4/lwip/ |
H A D | ip4.h | 119 err_t ip_output_if(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest,
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 142 #define ip_output_if lwip_ip_output_if macro
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | icmp.c | 235 ret = ip_output_if(p, ip_current_dest_addr(), IP_HDRINCL, 238 LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: ip_output_if returned an error: %c.\n", ret));
|
H A D | ip4.c | 742 ip_output_if(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, function 751 * Same as ip_output_if() but with the possibility to include IP options: 875 LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c%"U16_F"\n", netif->name[0], netif->name[1], netif->num)); 902 * Simple interface to ip_output_if. It finds the outgoing network 903 * interface and calls upon ip_output_if to do the actual work. 916 * see ip_output_if() for more return values 935 return ip_output_if(p, src, dest, ttl, tos, proto, netif); 940 * before calling ip_output_if. 952 * calling ip_output_if() 955 * see ip_output_if() fo [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/ |
H A D | lwip-namespace.h | 39 #define ip_output_if lwip_ip_output_if macro
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | pxping_win.c | 439 ip_output_if(p, &src,
|
H A D | pxping.c | 170 * We pass raw IP datagram for ip_output_if() so we only need pbuf and 247 * If ip_output_if() is passed dest == NULL then it treats p as 254 (ip_output_if((p), NULL, NULL, 0, 0, 0, (netif))) 1922 DPRINTF(("%s: ip_output_if: %s\n",
|