diff options
author | dtucker <dtucker> | 2013-05-16 10:28:16 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2013-05-16 10:28:16 +0000 |
commit | 2038667f13ffaf554a11f1f701500fcc0160c522 (patch) | |
tree | f834177c0db46e24a9112bc4d7ac8e91fbddf2da /readconf.h | |
parent | 98af398d9c08e31ed6a8c8110917f1dc55de9643 (diff) | |
download | openssh-2038667f13ffaf554a11f1f701500fcc0160c522.tar.gz |
- 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
@@ -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; |