extb_combi: relax recursion and complexity limits now that bancache for unjoined users is fixed

This commit is contained in:
William Pitcock 2015-12-13 11:38:27 -06:00
parent bcbc6bd9e1
commit a2bc8af8c5
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}