git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Compile testing, what's that?
[tpg/acess2.git]
/
KernelLand
/
Modules
/
IPStack
/
firewall.h
1
/*
2
*/
3
#ifndef _FIREWALL_H_
4
#define _FIREWALL_H_
5
6
enum eFirewallActions
7
{
8
FIREWALL_ACCEPT,
9
FIREWALL_DROP
10
};
11
12
/**
13
* \brief Tests a packet on a chain
14
*/
15
extern int IPTables_TestChain(
16
const char *RuleName,
17
const int AddressType,
18
const void *Src, const void *Dest,
19
Uint8 Type, Uint32 Flags,
20
size_t Length, const void *Data
21
);
22
23
#endif
UCC
git Repository :: git.ucc.asn.au