* Removed TRQ from lib/trq, not needed anymore.
+ * Do more frequent heartbeats (5 minutes instead of 10 minutes)
+ with server connections. Later this will be configurable
+ in config file after new config file is done. Affected file
+ silcd/server.c.
+
Tue Jan 29 10:35:03 CET 2002 Pekka Riikonen <priikone@silcnet.org>
* Fixed a crash in server related to channel announcements.
}
/* check only for /command completions from now on */
+ if (*linestart == '\0')
+ return;
+
cmdchars = strchr(cmdchars, *linestart);
if (cmdchars == NULL) return;
timeout!! */
hb_context = silc_calloc(1, sizeof(*hb_context));
hb_context->server = server;
- silc_socket_set_heartbeat(sock, 600, hb_context,
+ silc_socket_set_heartbeat(sock, 300, hb_context,
silc_server_perform_heartbeat,
server->schedule);
timeout!! */
hb_context = silc_calloc(1, sizeof(*hb_context));
hb_context->server = server;
- silc_socket_set_heartbeat(sock, 600, hb_context,
+ silc_socket_set_heartbeat(sock, 400, hb_context,
silc_server_perform_heartbeat,
server->schedule);