* Clarified the connections_max meaning in General section
in doc/example_silcd.conf.in.
+ * The reconnect_keep_trying default value set to TRUE
+ if it is not defined in the config file. Affected file
+ silcd/serverconfig.c.
+
Wed Mar 3 15:13:49 CET 2004 Pekka Riikonen <priikone@silcnet.org>
* Fixed crashbug in connection closing, after a protocol
config->tmp = NULL;
return SILC_CONFIG_OK;
}
- SILC_SERVER_CONFIG_ALLOCTMP(SilcServerConfigConnParams);
+ if (!tmp) {
+ SILC_SERVER_CONFIG_ALLOCTMP(SilcServerConfigConnParams);
+ tmp->reconnect_keep_trying = TRUE;
+ }
if (!strcmp(name, "name")) {
CONFIG_IS_DOUBLE(tmp->name);
/* general config defaults */
config_new->refcount = 1;
config_new->logging_timestamp = TRUE;
+ config_new->param.reconnect_keep_trying = TRUE;
/* obtain a config file object */
file = silc_config_open(filename);