Files
xtables-addons/extensions/xt_IPMARK.h
Jan Engelhardt e037035bd4 IPMARK: rebuild parameter structure (fixed-size types)
Rebuild the parameter structure to have fixed-size members only.
2008-04-09 13:09:45 +02:00

16 lines
239 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;
};
#endif /* _LINUX_NETFILTER_XT_IPMARK_H */