• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/include/linux/netfilter_ipv6/
1#ifndef _IP6T_REJECT_H
2#define _IP6T_REJECT_H
3
4enum ip6t_reject_with {
5	IP6T_ICMP6_NO_ROUTE,
6	IP6T_ICMP6_ADM_PROHIBITED,
7	IP6T_ICMP6_ADDR_UNREACH,
8	IP6T_ICMP6_PORT_UNREACH,
9	IP6T_TCP_RESET
10};
11
12struct ip6t_reject_info {
13	enum ip6t_reject_with with;      /* reject type */
14};
15
16#endif /*_IP6T_REJECT_H*/
17