Searched refs:filterp (Results 1 – 1 of 1) sorted by relevance
528 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument531 p = (u_char *)filterp; \535 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument536 bzero(filterp, sizeof(struct icmp6_filter))538 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument539 memset(filterp, 0xff, sizeof(struct icmp6_filter))540 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument541 memset(filterp, 0x00, sizeof(struct icmp6_filter))544 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument545 (((filterp)->icmp6_filt[(type) >> 5]) |= (1 << ((type) & 31)))[all …]