mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-05 20:26:38 +02:00
17 lines
252 B
C
17 lines
252 B
C
#ifndef _LINUX_NETFILTER_XT_IPMARK_H
|
|
#define _LINUX_NETFILTER_XT_IPMARK_H 1
|
|
|
|
enum {
|
|
XT_IPMARK_SRC,
|
|
XT_IPMARK_DST,
|
|
};
|
|
|
|
struct xt_ipmark_tginfo {
|
|
__u32 andmask;
|
|
__u32 ormask;
|
|
__u8 selector;
|
|
__u8 shift;
|
|
};
|
|
|
|
#endif /* _LINUX_NETFILTER_XT_IPMARK_H */
|