Searched refs:filterp (Results 1 – 1 of 1) sorted by relevance
555 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument558 p = (u_char *)filterp; \562 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument563 bzero(filterp, sizeof(struct icmp6_filter))565 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument566 memset(filterp, 0xff, sizeof(struct icmp6_filter))567 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument568 memset(filterp, 0x00, sizeof(struct icmp6_filter))571 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument572 (((filterp)->icmp6_filt[(type) >> 5]) |= (1 << ((type) & 31)))[all …]