• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/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_NOT_NEIGHBOUR,
8	IP6T_ICMP6_ADDR_UNREACH,
9	IP6T_ICMP6_PORT_UNREACH,
10	IP6T_ICMP6_ECHOREPLY,
11	IP6T_TCP_RESET
12};
13
14struct ip6t_reject_info {
15	u_int32_t	with;	/* reject type */
16};
17
18#endif /*_IP6T_REJECT_H*/
19