]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
allow for now limits on max_requests
authorAlan T. DeKok <aland@freeradius.org>
Tue, 18 Aug 2020 19:18:37 +0000 (15:18 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 18 Aug 2020 19:18:37 +0000 (15:18 -0400)
src/lib/io/worker.c

index 34b4258b3f2507fe8ce8e14448f4feae448213d6..4f1df2ee680280e80b351b8113705e98a2b1b64d 100644 (file)
@@ -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);