mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 20:55:13 +02:00
14 lines
211 B
C
14 lines
211 B
C
#pragma once
|
|
|
|
enum {
|
|
CONDITION_NAME_LEN = 31,
|
|
};
|
|
|
|
struct xt_condition_mtinfo {
|
|
char name[CONDITION_NAME_LEN];
|
|
__u8 invert;
|
|
|
|
/* Used internally by the kernel */
|
|
void *condvar __attribute__((aligned(8)));
|
|
};
|