extb_combi: relax recursion and complexity limits now that bancache for unjoined users is fixed
This commit is contained in:
parent
bcbc6bd9e1
commit
a2bc8af8c5
1 changed files with 2 additions and 2 deletions
|
@ -88,10 +88,10 @@ static int eb_combi(const char *data, struct Client *client_p,
|
||||||
{
|
{
|
||||||
const char *p, *banend;
|
const char *p, *banend;
|
||||||
int have_result = FALSE;
|
int have_result = FALSE;
|
||||||
int allowed_nodes = 6;
|
int allowed_nodes = 11;
|
||||||
size_t datalen;
|
size_t datalen;
|
||||||
|
|
||||||
if (recursion_depth >= 2) {
|
if (recursion_depth >= 5) {
|
||||||
DEBUG("combo invalid: recursion depth too high");
|
DEBUG("combo invalid: recursion depth too high");
|
||||||
return EXTBAN_INVALID;
|
return EXTBAN_INVALID;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue