blob: cd2e940c8bf531adb6d88f9965f08487d50f7c2f [file] [log] [blame]
Ben Cheng30692c62013-10-15 18:26:18 -07001#ifndef _IP6T_REJECT_H
2#define _IP6T_REJECT_H
3
4#include <linux/types.h>
5
6enum 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,
Christopher Ferris12e1f282016-02-04 12:35:07 -080013 IP6T_TCP_RESET,
14 IP6T_ICMP6_POLICY_FAIL,
15 IP6T_ICMP6_REJECT_ROUTE
Ben Cheng30692c62013-10-15 18:26:18 -070016};
17
18struct ip6t_reject_info {
19 __u32 with; /* reject type */
20};
21
22#endif /*_IP6T_REJECT_H*/