allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / netfilter_ipv4 / ip_set_setlist.h
blob7cc6ed090a2cd2829292024c86d01de4f5f0560e
1 #ifndef __IP_SET_SETLIST_H
2 #define __IP_SET_SETLIST_H
4 #include <linux/netfilter_ipv4/ip_set.h>
6 #define SETTYPE_NAME "setlist"
8 #define IP_SET_SETLIST_ADD_AFTER 0
9 #define IP_SET_SETLIST_ADD_BEFORE 1
11 struct ip_set_setlist {
12 uint8_t size;
13 ip_set_id_t index[0];
16 struct ip_set_req_setlist_create {
17 uint8_t size;
20 struct ip_set_req_setlist {
21 char name[IP_SET_MAXNAMELEN];
22 char ref[IP_SET_MAXNAMELEN];
23 uint8_t before;
26 #endif /* __IP_SET_SETLIST_H */