Searched refs:filterp (Results 1 – 1 of 1) sorted by relevance
557 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument560 p = (u_char *)filterp; \564 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument565 bzero(filterp, sizeof(struct icmp6_filter))567 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument568 memset(filterp, 0xff, sizeof(struct icmp6_filter))569 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument570 memset(filterp, 0x00, sizeof(struct icmp6_filter))573 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument574 (((filterp)->icmp6_filt[(type) >> 5]) |= (1 << ((type) & 31)))[all …]