Home
last modified time | relevance | path

Searched refs:icmptype (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sbin/ip6fw/
H A Dip6fw.c755 unsigned long icmptype; in fill_icmptypes() local
760 icmptype = strtoul(c, &c, 0); in fill_icmptypes()
765 if (icmptype >= IPV6_FW_ICMPTYPES_DIM * sizeof(unsigned) * 8) in fill_icmptypes()
768 types[icmptype / (sizeof(unsigned) * 8)] |= in fill_icmptypes()
769 1 << (icmptype % (sizeof(unsigned) * 8)); in fill_icmptypes()
/dragonfly/sys/net/pf/
H A Dpf.c3747 if (icmptype == ICMP_UNREACH || in pf_test_rule()
3749 icmptype == ICMP_REDIRECT || in pf_test_rule()
3750 icmptype == ICMP_TIMXCEED || in pf_test_rule()
3751 icmptype == ICMP_PARAMPROB) in pf_test_rule()
3767 icmptype == ICMP6_PARAM_PROB) in pf_test_rule()
5169 u_int8_t icmptype = 0; in pf_test_state_icmp() local
5183 if (icmptype == ICMP_UNREACH || in pf_test_state_icmp()
5185 icmptype == ICMP_REDIRECT || in pf_test_state_icmp()
5186 icmptype == ICMP_TIMXCEED || in pf_test_state_icmp()
5187 icmptype == ICMP_PARAMPROB) in pf_test_state_icmp()
[all …]
/dragonfly/usr.sbin/pfctl/
H A Dparse.y2529 u_int8_t icmptype; variable
2536 $$ = (icmptype << 8 | $1);
2548 u_int8_t icmptype; variable
2555 $$ = (icmptype << 8 | $1);
3297 icmp_item : icmptype {
3307 | icmptype CODE STRING {
3326 | icmptype CODE NUMBER {
3387 icmptype : STRING {
6072 u_int8_t icmptype; in parseicmpspec() local
6075 icmptype = returnicmpdefault >> 8; in parseicmpspec()
[all …]
/dragonfly/contrib/libpcap/
H A Dscanner.l419 icmptype { yylval->h = 0; return NUM; }