From: Alan T. DeKok Date: Tue, 14 Aug 2012 14:08:03 +0000 (+0200) Subject: If there's no pool{} configuration, use the defaults X-Git-Tag: release_3_0_0_beta0~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75a8bc6a95a2219af04e85d4f07f9dbbe5e124b5;p=thirdparty%2Ffreeradius-server.git If there's no pool{} configuration, use the defaults --- diff --git a/src/main/connection.c b/src/main/connection.c index ee250ded28b..ef51cc56edf 100644 --- a/src/main/connection.c +++ b/src/main/connection.c @@ -437,7 +437,12 @@ fr_connection_pool_t *fr_connection_pool_init(CONF_SECTION *parent, if (cf_section_sub_find(cs, "trigger")) fc->trigger = TRUE; } else { - fc->max = 1024; + fc->start = 5; + fc->min = 5; + fc->max = 10; + fc->spare = 3; + fc->cleanup_delay = 5; + fc->idle_timeout = 60; } /*