• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/netfilter_ipv4/
1/*
2 * Copyright (C) 2010, 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.
15 *
16 * $Id: ip_autofw.h,v 1.1 2008/10/02 03:42:40 Exp $
17 */
18
19#ifndef _IP_AUTOFW_H
20#define _IP_AUTOFW_H
21
22#define AUTOFW_MASTER_TIMEOUT 600	/* 600 secs */
23
24struct 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 */
28};
29
30struct 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 */
33};
34
35#endif /* _IP_AUTOFW_H */
36