These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / include / uapi / linux / netfilter_ipv6 / ip6t_REJECT.h
1 #ifndef _IP6T_REJECT_H
2 #define _IP6T_REJECT_H
3
4 #include <linux/types.h>
5
6 enum ip6t_reject_with {
7         IP6T_ICMP6_NO_ROUTE,
8         IP6T_ICMP6_ADM_PROHIBITED,
9         IP6T_ICMP6_NOT_NEIGHBOUR,
10         IP6T_ICMP6_ADDR_UNREACH,
11         IP6T_ICMP6_PORT_UNREACH,
12         IP6T_ICMP6_ECHOREPLY,
13         IP6T_TCP_RESET,
14         IP6T_ICMP6_POLICY_FAIL,
15         IP6T_ICMP6_REJECT_ROUTE
16 };
17
18 struct ip6t_reject_info {
19         __u32   with;   /* reject type */
20 };
21
22 #endif /*_IP6T_REJECT_H*/