HomeSort by relevance Sort by last modified time
    Searched refs:ip_output_if (Results 1 - 5 of 5) sorted by null

  /external/syslinux/core/lwip/src/core/
raw.c 269 err = ip_output_if (q, src_ip, ipaddr, pcb->ttl, pcb->tos, pcb->protocol, netif);
udp.c 618 LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDPLITE,)\n"));
622 err = ip_output_if(q, src_ip, dst_ip, pcb->ttl, pcb->tos, IP_PROTO_UDPLITE, netif);
656 LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDP,)\n"));
661 err = ip_output_if(q, src_ip, dst_ip, pcb->ttl, pcb->tos, IP_PROTO_UDP, netif);
    [all...]
  /external/syslinux/core/lwip/src/include/ipv4/lwip/
ip.h 58 /* This is passed as the destination address to ip_output_if (not
176 err_t ip_output_if(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest,
  /external/syslinux/core/lwip/src/core/ipv4/
ip.c 572 ip_output_if(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, function
581 * Same as ip_output_if() but with the possibility to include IP options:
704 LWIP_DEBUGF(IP_DEBUG, ("ip_output_if: %c%c%"U16_F"\n", netif->name[0], netif->name[1], netif->num));
731 * Simple interface to ip_output_if. It finds the outgoing network
732 * interface and calls upon ip_output_if to do the actual work.
745 * see ip_output_if() for more return values
764 return ip_output_if(p, src, dest, ttl, tos, proto, netif);
769 * before calling ip_output_if.
781 * calling ip_output_if()
784 * see ip_output_if() for more return value
    [all...]
icmp.c 218 ret = ip_output_if(p, ip_current_dest_addr(), IP_HDRINCL,
221 LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: ip_output_if returned an error: %c.\n", ret));

Completed in 4037 milliseconds