projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge git://git.infradead.org/battery-2.6
[linux-2.6]
/
include
/
linux
/
netfilter
/
xt_cluster.h
1
#ifndef _XT_CLUSTER_MATCH_H
2
#define _XT_CLUSTER_MATCH_H
3
4
enum xt_cluster_flags {
5
XT_CLUSTER_F_INV = (1 << 0)
6
};
7
8
struct xt_cluster_match_info {
9
u_int32_t total_nodes;
10
u_int32_t node_mask;
11
u_int32_t hash_seed;
12
u_int32_t flags;
13
};
14
15
#define XT_CLUSTER_NODES_MAX 32
16
17
#endif /* _XT_CLUSTER_MATCH_H */