mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 05:05:12 +02:00
12 lines
184 B
C
12 lines
184 B
C
#ifndef _XT_CONDITION_H
|
|
#define _XT_CONDITION_H
|
|
|
|
#define CONDITION_NAME_LEN 32
|
|
|
|
struct condition_info {
|
|
char name[CONDITION_NAME_LEN];
|
|
int invert;
|
|
};
|
|
|
|
#endif /* _XT_CONDITION_H */
|