Home
last modified time | relevance | path

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

/src/sys/netinet/
H A Dicmp6.h557 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument
560 p = (u_char *)filterp; \
564 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument
565 bzero(filterp, sizeof(struct icmp6_filter))
567 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument
568 memset(filterp, 0xff, sizeof(struct icmp6_filter))
569 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument
570 memset(filterp, 0x00, sizeof(struct icmp6_filter))
573 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument
574 (((filterp)->icmp6_filt[(type) >> 5]) |= (1 << ((type) & 31)))
[all …]