diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-05-16 12:28:16 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-05-16 12:28:16 +0200 |
commit | c53c2af173cf67fd1c26f98e7900299b1b65b6ec (patch) | |
tree | 1c83d4abcdec31e4be6d8a2955fdad33b985b976 /readconf.h | |
parent | - dtucker@cvs.openbsd.org 2013/05/10 10:13:50 (diff) | |
download | openssh-c53c2af173cf67fd1c26f98e7900299b1b65b6ec.tar.xz openssh-c53c2af173cf67fd1c26f98e7900299b1b65b6ec.zip |
- dtucker@cvs.openbsd.org 2013/05/16 02:00:34
[ssh_config sshconnect2.c packet.c readconf.h readconf.c clientloop.c
ssh_config.5 packet.h]
Add an optional second argument to RekeyLimit in the client to allow
rekeying based on elapsed time in addition to amount of traffic.
with djm@ jmc@, ok djm
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 841648906..e20573090 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.93 2013/02/22 04:45:09 dtucker Exp $ */ +/* $OpenBSD: readconf.h,v 1.94 2013/05/16 02:00:34 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -110,6 +110,7 @@ typedef struct { int enable_ssh_keysign; int64_t rekey_limit; + int rekey_interval; int no_host_authentication_for_localhost; int identities_only; int server_alive_interval; |