diff options
author | Cy Schubert <cy@FreeBSD.org> | 2019-12-28 05:27:06 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2019-12-28 05:27:06 +0000 |
commit | e2fe726866d062155f6b1aae749375475ef19191 (patch) | |
tree | fe6b00611d5c987d2c12c32063891ae19295ffeb /services/modstack.c | |
parent | 366b94c4a9552acfb560d3234aea0955ebc1eb8e (diff) |
Diffstat (limited to 'services/modstack.c')
-rw-r--r-- | services/modstack.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/services/modstack.c b/services/modstack.c index 05b949d1e330d..68e5928146dd5 100644 --- a/services/modstack.c +++ b/services/modstack.c @@ -60,6 +60,9 @@ #ifdef CLIENT_SUBNET #include "edns-subnet/subnetmod.h" #endif +#ifdef USE_IPSET +#include "ipset/ipset.h" +#endif /** count number of modules (words) in the string */ static int @@ -146,6 +149,9 @@ module_list_avail(void) #ifdef CLIENT_SUBNET "subnetcache", #endif +#ifdef USE_IPSET + "ipset", +#endif "respip", "validator", "iterator", @@ -174,6 +180,9 @@ module_funcs_avail(void) #ifdef CLIENT_SUBNET &subnetmod_get_funcblock, #endif +#ifdef USE_IPSET + &ipset_get_funcblock, +#endif &respip_get_funcblock, &val_get_funcblock, &iter_get_funcblock, |