diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-05-16 20:29:28 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-05-16 20:29:28 +1000 |
commit | 5f96f3b4bee11ae2b9b32ff9b881c3693e210f96 (patch) | |
tree | 1e1c647e73e447b06b194b38b5d39e95aec8bef9 /packet.c | |
parent | c53c2af173cf67fd1c26f98e7900299b1b65b6ec (diff) |
- dtucker@cvs.openbsd.org 2013/05/16 04:09:14
[sshd_config.5 servconf.c servconf.h packet.c serverloop.c monitor.c sshd_config
sshd.c] Add RekeyLimit to sshd with the same syntax as the client allowing
rekeying based on traffic volume or time. ok djm@, help & ok jmc@ for the man
page.
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.c,v 1.184 2013/05/16 02:00:34 dtucker Exp $ */ | 1 | /* $OpenBSD: packet.c,v 1.185 2013/05/16 04:09:13 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1966,7 +1966,7 @@ packet_get_rekey_timeout(void) | |||
1966 | 1966 | ||
1967 | seconds = active_state->rekey_time + active_state->rekey_interval - | 1967 | seconds = active_state->rekey_time + active_state->rekey_interval - |
1968 | time(NULL); | 1968 | time(NULL); |
1969 | return (seconds < 0 ? 0 : seconds); | 1969 | return (seconds <= 0 ? 1 : seconds); |
1970 | } | 1970 | } |
1971 | 1971 | ||
1972 | void | 1972 | void |