/external/qemu/slirp/ |
ip_icmp.c | 44 /* list of actions for icmp_error() on RX of an icmp message */ 156 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno)); 204 icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, function 212 DEBUG_CALL("icmp_error");
|
ip_icmp.h | 157 void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
|
ip_input.c | 162 icmp_error(m, ICMP_TIMXCEED,ICMP_TIMXCEED_INTRANS, 0,"ttl"); 685 /* ip->ip_len -= ip->ip_hl << 2; XXX icmp_error adds in hdr length */ 688 icmp_error(m, type, code, 0, 0);
|
socket.c | 468 icmp_error(so->so_m, ICMP_UNREACH,code, 0,strerror(errno)); 513 icmp_error(so->so_m, ICMP_UNREACH,code, 0,strerror(errno));
|
udp.c | 237 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
|
tcp_input.c | 688 icmp_error(m, ICMP_UNREACH,code, 0,strerror(errno)); [all...] |
/external/qemu/slirp-android/ |
ip_icmp.c | 45 /* list of actions for icmp_error() on RX of an icmp message */ 158 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,errno_str); 206 icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, function 214 DEBUG_CALL("icmp_error");
|
ip_icmp.h | 159 void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
|
ip_input.c | 162 icmp_error(m, ICMP_TIMXCEED,ICMP_TIMXCEED_INTRANS, 0,"ttl"); 685 /* ip->ip_len -= ip->ip_hl << 2; XXX icmp_error adds in hdr length */ 688 icmp_error(m, type, code, 0, 0);
|
socket.c | 474 icmp_error(so->so_m, ICMP_UNREACH,code, 0,errno_str); 514 icmp_error(so->so_m, ICMP_UNREACH,code, 0,errno_str);
|
udp.c | 287 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,errno_str);
|
tcp_input.c | 694 icmp_error(m, ICMP_UNREACH,code, 0,errno_str); [all...] |