ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / linux / netfilter_ipv6 / ip6t_REJECT.h
1 #ifndef _IP6T_REJECT_H
2 #define _IP6T_REJECT_H
3
4 enum ip6t_reject_with {
5         IP6T_ICMP_NET_UNREACHABLE,
6         IP6T_ICMP_HOST_UNREACHABLE,
7         IP6T_ICMP_PROT_UNREACHABLE,
8         IP6T_ICMP_PORT_UNREACHABLE,
9         IP6T_ICMP_ECHOREPLY
10 };
11
12 struct ip6t_reject_info {
13         enum ip6t_reject_with with;      /* reject type */
14 };
15
16 #endif /*_IPT_REJECT_H*/