-Mon Apr 9 16:54:44 EEST 2001 Pekka Riikonen <priikone@poseidon.pspt.fi>
+Mon Apr 9 17:54:44 EEST 2001 Pekka Riikonen <priikone@poseidon.pspt.fi>
* Added silc_pkcs_decode_identifier to decode the public key's
identifier. Affected file lib/silccrypt/silpkcs.[ch].
* Changed the PKCS api to return the public key length when
setting the public key.
+ * Send heartbeat packet immediately, not through packet queue.
+ Affected file silcd/packet_send.c.
+
+ * Fixed a fatal bug in the public and private key file loading.
+ Affected file lib/silccrypt/silcpkcs.c.
+
Sun Apr 8 19:30:56 EEST 2001 Pekka Riikonen <priikone@poseidon.pspt.fi>
* Made the key generation options to the silcd program. Added
SilcSocketConnection sock)
{
silc_server_packet_send(server, sock, SILC_PACKET_HEARTBEAT, 0,
- NULL, 0, FALSE);
+ NULL, 0, TRUE);
}
/* Generic function to relay packet we've received. This is used to relay
silc_task_register(server->timeout_queue, 0,
silc_server_channel_key_rekey,
- (void *)rekey, 3600, 0,
+ (void *)rekey, 3600 + 5, 0,
SILC_TASK_TIMEOUT,
SILC_TASK_PRI_NORMAL);
}
silc_server_channel_key_rekey);
silc_task_register(server->timeout_queue, 0,
silc_server_channel_key_rekey,
- (void *)channel->rekey, 3600, 0,
+ (void *)channel->rekey, 3600 + 5, 0,
SILC_TASK_TIMEOUT,
SILC_TASK_PRI_NORMAL);
}
silc_server_channel_key_rekey);
silc_task_register(server->timeout_queue, 0,
silc_server_channel_key_rekey,
- (void *)channel->rekey, 3600, 0,
+ (void *)channel->rekey, 3600 + 5, 0,
SILC_TASK_TIMEOUT,
SILC_TASK_PRI_NORMAL);
}