Displaying 2 results from an estimated 2 matches for "key_regeneration_alarm".
2002 Aug 30
1
LIBCRYPTO?
Hi all,
I have a question about OpenSSH configuration. In Makefile there is defined
LIBS=$(LIBCRYPTO), but the problem is that the version of OpenSSL that I'm
using holds only the version LIBCRYPT. When adding LIBCRYPT to the Makefile
I get:
sshd.elf2flt: In function `key_regeneration_alarm':
/.../ssh/sshd.c:252: undefined reference to `RSA_free'
/.../ssh/sshd.c:253: undefined reference to `RSA_new'
/.../ssh/sshd.c:256: undefined reference to `RSA_free'
/.../ssh/sshd.c:257: undefined reference to `RSA_new'
sshd.elf2flt: In function `destroy_sensitive_data':
/.....
2007 Mar 06
0
sshd Termination by SIGALRM
.../* Mark that the key has been used (it was "given" to
the child). */
if ((options.protocol & SSH_PROTO_1) &&
key_used == 0) {
/* Schedule server key regeneration alarm. */
signal(SIGALRM, key_regeneration_alarm);
alarm(options.key_regeneration_time);
key_used = 1;
}
might cause a problem if signal call fails because of the above stated
reason. In such a case the default handler (SIG_DFL which is terminate)
gets called since alarm function gets execu...