repo.or.cz
/
linux-rt-nao.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
repo init
[linux-rt-nao.git]
/
include
/
linux
/
netfilter
/
xt_MARK.h
blob
028304bcc0b15140e1a1337d3a48855f8abe52fb
1
#ifndef _XT_MARK_H_target
2
#define _XT_MARK_H_target
3
4
#include <linux/types.h>
5
6
/* Version 0 */
7
struct
xt_mark_target_info
{
8
unsigned long
mark
;
9
};
10
11
/* Version 1 */
12
enum
{
13
XT_MARK_SET
=
0
,
14
XT_MARK_AND
,
15
XT_MARK_OR
,
16
};
17
18
struct
xt_mark_target_info_v1
{
19
unsigned long
mark
;
20
__u8 mode
;
21
};
22
23
struct
xt_mark_tginfo2
{
24
__u32 mark
,
mask
;
25
};
26
27
#endif
/*_XT_MARK_H_target */