ipset: move ipset to ipset-4

This commit is contained in:
Jan Engelhardt
2011-01-04 03:52:11 +01:00
parent 77027ff8d3
commit 75212f3972
55 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
#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*/