| "void ICMP6_FILTER_SETPASSALL" "struct icmp6_filter *filterp" |
| | Allow all incoming messages. filterp is modified to allow all message types. |
| "void ICMP6_FILTER_SETBLOCKALL" "struct icmp6_filter *filterp" |
| | Ignore all incoming messages. filterp is modified to ignore all message types. |
| void ICMP6_FILTER_SETPASS "int type" "struct icmp6_filter *filterp" |
| | Allow ICMPv6 messages with the given type. filterp is modified to allow such messages. |
| void ICMP6_FILTER_SETBLOCK " " int type " " struct icmp6_filter *filterp" |
| | Ignore ICMPv6 messages with the given type. filterp is modified to ignore such messages. |
| int ICMP6_FILTER_WILLPASS " " int type " " const struct icmp6_filter *filterp" |
| | Determine if the given filter will allow an ICMPv6 message of the given type. |
| int ICMP6_FILTER_WILLBLOCK " " int type " " const struct icmp6_filter *filterp" |
| | Determine if the given filter will ignore an ICMPv6 message of the given type. |
|