mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 12:45:13 +02:00
15 lines
249 B
C
15 lines
249 B
C
#ifndef _LINUX_NETFILTER_XT_CHAOS_H
|
|
#define _LINUX_NETFILTER_XT_CHAOS_H 1
|
|
|
|
enum xt_chaos_target_variant {
|
|
XTCHAOS_NORMAL,
|
|
XTCHAOS_TARPIT,
|
|
XTCHAOS_DELUDE,
|
|
};
|
|
|
|
struct xt_chaos_tginfo {
|
|
uint8_t variant;
|
|
};
|
|
|
|
#endif /* _LINUX_NETFILTER_XT_CHAOS_H */
|