blob: ae61ddd328b0d45664acc07b5075bf10269819fe [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Ben Cheng30692c62013-10-15 18:26:18 -07002#ifndef _IPT_REJECT_H
3#define _IPT_REJECT_H
4
5enum ipt_reject_with {
6 IPT_ICMP_NET_UNREACHABLE,
7 IPT_ICMP_HOST_UNREACHABLE,
8 IPT_ICMP_PROT_UNREACHABLE,
9 IPT_ICMP_PORT_UNREACHABLE,
10 IPT_ICMP_ECHOREPLY,
11 IPT_ICMP_NET_PROHIBITED,
12 IPT_ICMP_HOST_PROHIBITED,
13 IPT_TCP_RESET,
14 IPT_ICMP_ADMIN_PROHIBITED
15};
16
17struct ipt_reject_info {
18 enum ipt_reject_with with; /* reject type */
19};
20
21#endif /*_IPT_REJECT_H*/