GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / netfilter_ipv6 / ip6t_ROUTE.h
blobc5ec871b507689e2fc316c5587c5ee4f693fb70a
1 /* Header file for iptables ip6t_ROUTE target
3 * (C) 2003 by Cédric de Launois <delaunois@info.ucl.ac.be>
5 * This software is distributed under GNU GPL v2, 1991
6 */
7 #ifndef _IPT_ROUTE_H_target
8 #define _IPT_ROUTE_H_target
10 #define IP6T_ROUTE_IFNAMSIZ 16
12 struct ip6t_route_target_info {
13 char oif[IP6T_ROUTE_IFNAMSIZ]; /* Output Interface Name */
14 char iif[IP6T_ROUTE_IFNAMSIZ]; /* Input Interface Name */
15 u_int32_t gw[4]; /* IPv6 address of gateway */
16 u_int8_t flags;
19 /* Values for "flags" field */
20 #define IP6T_ROUTE_CONTINUE 0x01
21 #define IP6T_ROUTE_TEE 0x02
23 #endif /*_IP6T_ROUTE_H_target*/