mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 20:55:13 +02:00
22 lines
345 B
C
22 lines
345 B
C
#ifndef _IPT_SET_H
|
|
#define _IPT_SET_H
|
|
|
|
#include "ip_set.h"
|
|
|
|
struct ipt_set_info {
|
|
ip_set_id_t index;
|
|
u_int32_t flags[IP_SET_MAX_BINDINGS + 1];
|
|
};
|
|
|
|
/* match info */
|
|
struct ipt_set_info_match {
|
|
struct ipt_set_info match_set;
|
|
};
|
|
|
|
struct ipt_set_info_target {
|
|
struct ipt_set_info add_set;
|
|
struct ipt_set_info del_set;
|
|
};
|
|
|
|
#endif /*_IPT_SET_H*/
|