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

  /external/iputils/ninfod/
ninfod.c 705 struct icmp6_hdr *icmph; local
753 icmph = (struct icmp6_hdr *)p->query;
757 icmph->icmp6_type, icmph->icmp6_code,
758 ntohs(icmph->icmp6_cksum));
760 if (icmph->icmp6_type != ICMP6_NI_QUERY) {
763 icmph->icmp6_type, saddrbuf);
  /development/ndk/platforms/android-3/include/linux/
skbuff.h 116 struct icmphdr *icmph; member in union:sk_buff::__anon1480
  /external/iputils/
ping.c 616 struct icmphdr icmph; local
622 iov.iov_base = &icmph;
623 iov.iov_len = sizeof(icmph);
661 if (res < sizeof(icmph) ||
663 icmph.type != ICMP_ECHO ||
664 !is_ours(icmph.un.echo.id)) {
673 acknowledge(ntohs(icmph.un.echo.sequence));
699 printf("From %s: icmp_seq=%u ", pr_addr(sin->sin_addr.s_addr), ntohs(icmph.un.echo.sequence));
    [all...]
ping6.c 1278 struct icmp6_hdr icmph; local
1284 iov.iov_base = &icmph;
1285 iov.iov_len = sizeof(icmph);
1322 if (res < sizeof(icmph) ||
1324 icmph.icmp6_type != ICMP6_ECHO_REQUEST ||
1325 !is_ours(icmph.icmp6_id))
1361 struct icmp6_hdr *icmph; local
1442 struct icmp6_hdr *icmph = (struct icmp6_hdr *) _icmph; local
1594 struct icmp6_hdr *icmph; local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_usrreq.c 330 struct icmp *icmph; local
347 icmph = (struct icmp *)((caddr_t)ip - (sizeof(struct icmp) -
349 if (icmph->icmp_type != ICMP_UNREACH) {
354 if (icmph->icmp_code != ICMP_UNREACH_NEEDFRAG) {
365 nxtsz = ntohs(icmph->icmp_nextmtu);
409 struct icmp *icmph; local
424 icmph = (struct icmp *)((caddr_t)ip - (sizeof(struct icmp) -
426 if (icmph->icmp_type != ICMP_UNREACH) {
431 if ((icmph->icmp_code == ICMP_UNREACH_NET) ||
432 (icmph->icmp_code == ICMP_UNREACH_HOST) |
    [all...]

Completed in 220 milliseconds