summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-04-01 21:43:39 +1000
committerDamien Miller <djm@mindrot.org>2003-04-01 21:43:39 +1000
commit2dc074ef4bd925a7c95b9741ab20ab07c79dc2ff (patch)
treee91aa5d14b0c35f37671b283ba91e92ee9b3df21 /sshconnect2.c
parent495dca35186a9a33c85a6fa2bcc1b127512bb688 (diff)
downloadopenssh-git-2dc074ef4bd925a7c95b9741ab20ab07c79dc2ff.tar.gz
- markus@cvs.openbsd.org 2003/04/01 10:10:23
[clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c] [readconf.h serverloop.c sshconnect2.c] rekeying bugfixes and automatic rekeying: * both client and server rekey _automatically_ (a) after 2^31 packets, because after 2^32 packets the sequence number for packets wraps (b) after 2^(blocksize_in_bits/4) blocks (see: draft-ietf-secsh-newmodes-00.txt) (a) and (b) are _enabled_ by default, and only disabled for known openssh versions, that don't support rekeying properly. * client option 'RekeyLimit' * do not reply to requests during rekeying - markus@cvs.openbsd.org 2003/04/01 10:22:21 [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c] [readconf.h serverloop.c sshconnect2.c] backout rekeying changes (for 3.6.1)
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 1f92f029..642b34b9 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshconnect2.c,v 1.112 2003/03/05 22:33:43 markus Exp $");
+RCSID("$OpenBSD: sshconnect2.c,v 1.114 2003/04/01 10:22:21 markus Exp $");
#include "ssh.h"
#include "ssh2.h"