HomeSort by: relevance | last modified time | path
    Searched refs:icmp6 (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/usr.sbin/pf/etc/defaults/
pf.boot.conf 27 pass out inet6 proto ipv6-icmp all icmp6-type neighbrsol
28 pass in inet6 proto ipv6-icmp all icmp6-type neighbradv
29 pass out inet6 proto ipv6-icmp all icmp6-type routersol
30 pass in inet6 proto ipv6-icmp all icmp6-type routeradv
  /src/external/bsd/libpcap/dist/
scanner.l 301 icmp6 return ICMPV6;
468 icmp6-destinationunreach { yylval->h = 1; return NUM; }
469 icmp6-packettoobig { yylval->h = 2; return NUM; }
470 icmp6-timeexceeded { yylval->h = 3; return NUM; }
471 icmp6-parameterproblem { yylval->h = 4; return NUM; }
472 icmp6-echo { yylval->h = 128; return NUM; }
473 icmp6-echoreply { yylval->h = 129; return NUM; }
474 icmp6-multicastlistenerquery { yylval->h = 130; return NUM; }
475 icmp6-multicastlistenerreportv1 { yylval->h = 131; return NUM; }
476 icmp6-multicastlistenerdone { yylval->h = 132; return NUM;
    [all...]
  /src/sys/netinet6/
route6.c 48 #include <netinet/icmp6.h>
icmp6.c 1 /* $NetBSD: icmp6.c,v 1.258 2024/07/05 04:31:54 rin Exp $ */
2 /* $KAME: icmp6.c,v 1.217 2001/06/20 15:03:29 jinmei Exp $ */
65 __KERNEL_RCSID(0, "$NetBSD: icmp6.c,v 1.258 2024/07/05 04:31:54 rin Exp $");
99 #include <netinet/icmp6.h>
228 icmp6_wqinput = wqinput_create("icmp6", _icmp6_input);
355 struct icmp6_hdr *icmp6; local
382 * - the Parameter Problem Message that can be allowed an icmp6 error
421 * informational) we must not send icmp6 error.
441 * OK, ICMP6 can be generated.
463 icmp6 = (struct icmp6_hdr *)(nip6 + 1)
499 struct icmp6_hdr *icmp6, *nicmp6; local
961 struct icmp6_hdr *icmp6; local
1125 struct icmp6_hdr *icmp6 = ip6cp->ip6c_icmp6; local
1946 struct icmp6_hdr *icmp6; local
2054 struct icmp6_hdr *icmp6; local
    [all...]
dest6.c 50 #include <netinet/icmp6.h>
nd6_rtr.c 49 #include <netinet/icmp6.h>
raw_ip6.c 93 #include <netinet/icmp6.h>
178 /* send icmp6 host unreach? */
292 /* if the parameter is from icmp6, decode it. */
411 struct icmp6_hdr *icmp6; local
417 icmp6 = mtod(m, struct icmp6_hdr *);
418 type = icmp6->icmp6_type;
419 code = icmp6->icmp6_code;
433 * Next header might not be ICMP6 but use its pseudo header anyway.
sctp6_usrreq.c 80 #include <netinet/icmp6.h>
314 struct icmp6_hdr *icmp6,
322 (icmp6 == NULL) || (sh == NULL)) {
330 if (icmp6->icmp6_type != ICMP6_PACKET_TOO_BIG) {
340 nxtsz = ntohl(icmp6->icmp6_mtu);
422 /* if the parameter is from icmp6, decode it. */
  /src/sys/compat/common/
net_inet6_nd_90.c 53 #include <netinet/icmp6.h>
68 * sysctl helper routine for the net.inet6.icmp6.nd6 nodes. silly?
  /src/sys/netinet/
Makefile 5 INCS= dccp.h icmp6.h icmp_var.h if_ether.h if_inarp.h igmp.h \
tcp_vtw.h 145 #include <netinet/icmp6.h>
  /src/sys/kern/
uipc_mbufdebug.c 45 #include <netinet/icmp6.h>
213 return("ICMP6");
737 struct icmp6_hdr icmp6; local
740 if (pktlen < sizeof(icmp6)) {
742 pktlen, sizeof(icmp6));
746 if (m_peek_data(m, off, sizeof(icmp6), (void *)(&icmp6)) < 0) {
750 off += sizeof(icmp6);
752 (*pr)("ICMP6: Type = %u(", icmp6.icmp6_type)
    [all...]
  /src/external/bsd/dhcpcd/dist/src/
privsep-inet.c 33 #include <netinet/icmp6.h>
243 struct icmp6_hdr icmp6; local
246 if (msg->msg_iovlen == 0 || iov->iov_len < sizeof(icmp6)) {
251 memcpy(&icmp6, iov->iov_base, sizeof(icmp6));
252 switch(icmp6.icmp6_type) {
  /src/sys/net/npf/
npf_alg_icmp.c 47 #include <netinet/icmp6.h>
220 const struct icmp6_hdr *ic6 = npc->npc_l4.icmp6;
293 const struct icmp6_hdr *ic6 = enpc.npc_l4.icmp6;
npf.h 107 #include <netinet/icmp6.h>
192 struct icmp6_hdr * icmp6; member in union:__anon7047::__anon7049
npf_sendpkt.c 48 #include <netinet/icmp6.h>
  /src/tests/net/icmp/
t_icmp6_redirect.sh 52 atf_set "descr" "Test for the basically function of the ICMP6 redirect"
121 net.inet6.icmp6.redirtimeout=$REDIRECT_TIMEOUT
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
ifpermit.c 36 #include <netinet/icmp6.h>
thread-device.c 36 #include <netinet/icmp6.h>
node-type-tracker.c 35 #include <netinet/icmp6.h>
thread-service.c 35 #include <netinet/icmp6.h>
  /src/external/bsd/wpa/dist/src/ap/
ndisc_snoop.c 11 #include <netinet/icmp6.h>
  /src/external/bsd/ipf/dist/
ip_nat6.c 1399 struct icmp6_hdr *icmp6, *orgicmp; local
1409 icmp6 = fin->fin_dp;
1410 type = icmp6->icmp6_type;
1600 struct icmp6_hdr *icmp6; local
1626 icmp6 = fin->fin_dp;
1627 oip6 = (ip6_t *)((u_char *)icmp6 + sizeof(*icmp6));
1835 ipf_fix_incksum(0, &icmp6->icmp6_cksum,
2620 struct icmp6_hdr *icmp6 = NULL; local
2634 icmp6 = NULL
2822 struct icmp6_hdr *icmp6; local
3022 struct icmp6_hdr *icmp6; local
3223 struct icmp6_hdr *icmp6; local
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ip_nat6.c 1561 struct icmp6_hdr *icmp6; local
1587 icmp6 = fin->fin_dp;
1588 oip6 = (ip6_t *)((u_char *)icmp6 + sizeof(*icmp6));
1796 ipf_fix_incksum(0, &icmp6->icmp6_cksum,
2563 struct icmp6_hdr *icmp6 = NULL; local
2579 icmp6 = NULL;
2600 icmp6 = fin->fin_dp;
2607 if (icmp6->icmp6_type > ICMP6_ECHO_REPLY)
2765 struct icmp6_hdr *icmp6; local
2963 struct icmp6_hdr *icmp6; local
3166 struct icmp6_hdr *icmp6; local
    [all...]
  /src/usr.sbin/mld6query/
mld6.c 48 #include <netinet/icmp6.h>

Completed in 77 milliseconds

1 2 3 4