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_ipv4 / ip_autofw.h
blob9fb1b65c57daff24294cb4dcc90fc3eb1c269326
1 /*
2 * Copyright (C) 2012, Broadcom Corporation. All Rights Reserved.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 * $Id: ip_autofw.h,v 1.1 2008-10-02 03:42:40 $
19 #ifndef _IP_AUTOFW_H
20 #define _IP_AUTOFW_H
22 #define AUTOFW_MASTER_TIMEOUT 600 /* 600 secs */
24 struct ip_autofw_info {
25 u_int16_t proto; /* Related protocol */
26 u_int16_t dport[2]; /* Related destination port range */
27 u_int16_t to[2]; /* Port range to map related destination port range to */
30 struct ip_autofw_expect {
31 u_int16_t dport[2]; /* Related destination port range */
32 u_int16_t to[2]; /* Port range to map related destination port range to */
35 #endif /* _IP_AUTOFW_H */