summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorlaforge <laforge>2001-07-23 02:15:09 +0000
committerlaforge <laforge>2001-07-23 02:15:09 +0000
commit3516190ffa7519c22cf66233ab7ba3fd4e468b76 (patch)
tree2953654ea4e3e55fc70da3603f674623fd9af555 /include/linux
parent1eef903c702ef52efcbf5e8b04117b3cec591922 (diff)
added libip6t_REJECT.c for IPv6 reject support
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netfilter_ipv6/ip6t_REJECT.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/netfilter_ipv6/ip6t_REJECT.h b/include/linux/netfilter_ipv6/ip6t_REJECT.h
new file mode 100644
index 0000000..7266402
--- /dev/null
+++ b/include/linux/netfilter_ipv6/ip6t_REJECT.h
@@ -0,0 +1,16 @@
+#ifndef _IP6T_REJECT_H
+#define _IP6T_REJECT_H
+
+enum ip6t_reject_with {
+ IP6T_ICMP6_NO_ROUTE,
+ IP6T_ICMP6_ADM_PROHIBITED,
+ IP6T_ICMP6_ADDR_UNREACH,
+ IP6T_ICMP6_PORT_UNREACH,
+ IP6T_TCP_RESET
+};
+
+struct ip6t_reject_info {
+ enum ip6t_reject_with with; /* reject type */
+};
+
+#endif /*_IP6T_REJECT_H*/