cpp-d1064d
[cross.git] / i686-linux-gnu-4.7 / usr / include / linux / netfilter_ipv6 / ip6t_REJECT.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _IP6T_REJECT_H
3 #define _IP6T_REJECT_H
4
5 #include <linux/types.h>
6
7 enum ip6t_reject_with {
8         IP6T_ICMP6_NO_ROUTE,
9         IP6T_ICMP6_ADM_PROHIBITED,
10         IP6T_ICMP6_NOT_NEIGHBOUR,
11         IP6T_ICMP6_ADDR_UNREACH,
12         IP6T_ICMP6_PORT_UNREACH,
13         IP6T_ICMP6_ECHOREPLY,
14         IP6T_TCP_RESET,
15         IP6T_ICMP6_POLICY_FAIL,
16         IP6T_ICMP6_REJECT_ROUTE
17 };
18
19 struct ip6t_reject_info {
20         __u32   with;   /* reject type */
21 };
22
23 #endif /*_IP6T_REJECT_H*/