1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _IPT_REJECT_H
13#define _IPT_REJECT_H
14
15enum ipt_reject_with {
16 IPT_ICMP_NET_UNREACHABLE,
17 IPT_ICMP_HOST_UNREACHABLE,
18 IPT_ICMP_PROT_UNREACHABLE,
19 IPT_ICMP_PORT_UNREACHABLE,
20 IPT_ICMP_ECHOREPLY,
21 IPT_ICMP_NET_PROHIBITED,
22 IPT_ICMP_HOST_PROHIBITED,
23 IPT_TCP_RESET,
24 IPT_ICMP_ADMIN_PROHIBITED
25};
26
27struct ipt_reject_info {
28 enum ipt_reject_with with;
29};
30
31#endif
32