blob: 205ed62e4605dbf3d1ce080ec721b919829af50f [file] [log] [blame]
Patrick McHardy764d8a92005-08-21 23:31:06 -07001#ifndef _IP6T_REJECT_H
2#define _IP6T_REJECT_H
3
Jan Engelhardt06988b02011-01-20 17:50:17 +01004#include <linux/types.h>
5
Patrick McHardy764d8a92005-08-21 23:31:06 -07006enum 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};
15
16struct ip6t_reject_info {
Jan Engelhardt0260c1d2011-01-18 07:33:09 +010017 __u32 with; /* reject type */
Patrick McHardy764d8a92005-08-21 23:31:06 -070018};
19
20#endif /*_IP6T_REJECT_H*/