mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-12-07 00:23:53 +01:00
14 lines
146 B
C
14 lines
146 B
C
#pragma once
|
|
|
|
enum {
|
|
XT_IPMARK_SRC,
|
|
XT_IPMARK_DST,
|
|
};
|
|
|
|
struct xt_ipmark_tginfo {
|
|
__u32 andmask;
|
|
__u32 ormask;
|
|
__u8 selector;
|
|
__u8 shift;
|
|
};
|