a82362b0847df0a45cd79775450e89941cefe8b8
[tpg/acess2.git] / Modules / IPStack / firewall.h
1 /*
2  */
3 #ifndef _FIREWALL_H_
4 #define _FIREWALL_H_
5
6 /**
7  * \brief Tests a packet on a chain
8  */
9 extern int      IPTablesV4_TestChain(
10         const char *RuleName,
11         const tIPv4 *Src, const tIPv4 *Dest,
12         Uint8 Type, Uint32 Flags,
13         size_t Length, const void *Data
14         );
15
16 extern int      IPTablesV6_TestChain(
17         const char *RuleName,
18         const tIPv6 *Src, const tIPv6 *Dest,
19         Uint8 Type, Uint32 Flags,
20         size_t Length, const void *Data
21         );
22
23 #endif

UCC git Repository :: git.ucc.asn.au