• 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_ipv4/
1/* RPC extension for IP netfilter matching, Version 2.2
2 * (C) 2000 by Marcelo Barbosa Lima <marcelo.lima@dcc.unicamp.br>
3 *	- original rpc tracking module
4 *	- "recent" connection handling for kernel 2.3+ netfilter
5 *
6 * (C) 2001 by Rusty Russell <rusty@rustcorp.com.au>
7 *	- upgraded conntrack modules to oldnat api - kernel 2.4.0+
8 *
9 * (C) 2002 by Ian (Larry) Latter <Ian.Latter@mq.edu.au>
10 *	- upgraded conntrack modules to newnat api - kernel 2.4.20+
11 *	- extended matching to support filtering on procedures
12 *
13 * ipt_rpc.h.c,v 2.2 2003/01/12 18:30:00
14 *
15 *	This program is free software; you can redistribute it and/or
16 *	modify it under the terms of the GNU General Public License
17 *	as published by the Free Software Foundation; either version
18 *	2 of the License, or (at your option) any later version.
19 **
20 */
21
22#ifndef _IPT_RPC_H
23#define _IPT_RPC_H
24
25struct ipt_rpc_data;
26
27struct ipt_rpc_info {
28	int inverse;
29	int strict;
30	const char c_procs[1408];
31	int i_procs;
32	struct ipt_rpc_data *data;
33};
34
35#endif /* _IPT_RPC_H */
36