repo.or.cz
/
zen-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
spi-topcliff-pch: Fix issue for transmitting over 4KByte
[zen-stable.git]
/
include
/
linux
/
netfilter
/
xt_cluster.h
blob
9b883c8fbf548bb34ab0e97ff48944d85a93d012
1
#ifndef _XT_CLUSTER_MATCH_H
2
#define _XT_CLUSTER_MATCH_H
3
4
#include <linux/types.h>
5
6
enum
xt_cluster_flags
{
7
XT_CLUSTER_F_INV
= (
1
<<
0
)
8
};
9
10
struct
xt_cluster_match_info
{
11
__u32 total_nodes
;
12
__u32 node_mask
;
13
__u32 hash_seed
;
14
__u32 flags
;
15
};
16
17
#define XT_CLUSTER_NODES_MAX 32
18
19
#endif
/* _XT_CLUSTER_MATCH_H */