From a2bc8af8c53231632cb706ea0b31f468a033ea97 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 13 Dec 2015 11:38:27 -0600 Subject: [PATCH] extb_combi: relax recursion and complexity limits now that bancache for unjoined users is fixed --- extensions/extb_combi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/extb_combi.c b/extensions/extb_combi.c index c947c8c2..1e9d3583 100644 --- a/extensions/extb_combi.c +++ b/extensions/extb_combi.c @@ -88,10 +88,10 @@ static int eb_combi(const char *data, struct Client *client_p, { const char *p, *banend; int have_result = FALSE; - int allowed_nodes = 6; + int allowed_nodes = 11; size_t datalen; - if (recursion_depth >= 2) { + if (recursion_depth >= 5) { DEBUG("combo invalid: recursion depth too high"); return EXTBAN_INVALID; }