mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-05 20:26:38 +02:00
12 lines
133 B
C
12 lines
133 B
C
#pragma once
|
|
|
|
enum {
|
|
XT_IPMARK_SRC,
|
|
XT_IPMARK_DST,
|
|
};
|
|
|
|
struct xt_ipmark_tginfo {
|
|
__u32 andmask, ormask;
|
|
__u8 selector, shift;
|
|
};
|