X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=ipsets.h;h=47579b8cba2d16e186a4b109af7a2a10e8adc2c4;hp=debe0e88962f6748ffc617b96808f1646d61b709;hb=9e7b8360c3f9c7d518322e732e6d8ddfbbf43c60;hpb=5df8137ebc5db2bc9c6e71b2d154a5f77679d9d8 diff --git a/ipsets.h b/ipsets.h index debe0e8..47579b8 100644 --- a/ipsets.h +++ b/ipsets.h @@ -19,9 +19,12 @@ #ifndef __FW3_IPSETS_H #define __FW3_IPSETS_H +#include + #include "options.h" #include "utils.h" + extern const struct fw3_option fw3_ipset_opts[]; struct fw3_ipset * fw3_alloc_ipset(void); @@ -29,10 +32,38 @@ void fw3_load_ipsets(struct fw3_state *state, struct uci_package *p); void fw3_create_ipsets(struct fw3_state *state); void fw3_destroy_ipsets(struct fw3_state *state); -struct fw3_ipset * fw3_lookup_ipset(struct fw3_state *state, const char *name, - bool running); +struct fw3_ipset * fw3_lookup_ipset(struct fw3_state *state, const char *name); + +bool fw3_check_ipset(struct fw3_ipset *set); #define fw3_free_ipset(ipset) \ fw3_free_object(ipset, fw3_ipset_opts) + +#ifndef SO_IP_SET + +#define SO_IP_SET 83 +#define IPSET_MAXNAMELEN 32 +#define IPSET_INVALID_ID 65535 + +union ip_set_name_index { + char name[IPSET_MAXNAMELEN]; + uint16_t index; +}; + +#define IP_SET_OP_GET_BYNAME 0x00000006 +struct ip_set_req_get_set { + uint32_t op; + uint32_t version; + union ip_set_name_index set; +}; + +#define IP_SET_OP_VERSION 0x00000100 +struct ip_set_req_version { + uint32_t op; + uint32_t version; +}; + +#endif /* SO_IP_SET */ + #endif