From: Alan T. DeKok Date: Tue, 18 Aug 2020 19:18:37 +0000 (-0400) Subject: allow for now limits on max_requests X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaeb4f6f4e77665bb19fc2831e720c54aebbb59f;p=thirdparty%2Ffreeradius-server.git allow for now limits on max_requests --- diff --git a/src/lib/io/worker.c b/src/lib/io/worker.c index 34b4258b3f2..4f1df2ee680 100644 --- a/src/lib/io/worker.c +++ b/src/lib/io/worker.c @@ -1089,7 +1089,7 @@ nomem: if (worker->config._x > _max) worker->config._x = _max; \ } while (0) - CHECK_CONFIG(max_requests,1024,(1 << 30)); + CHECK_CONFIG(max_requests,0,(1 << 30)); CHECK_CONFIG(max_channels, 64, 1024); CHECK_CONFIG(talloc_pool_size, 4096, 65536); CHECK_CONFIG(message_set_size, 1024, 8192);