diff options
author | Damien Miller <djm@mindrot.org> | 2010-08-03 16:04:46 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-08-03 16:04:46 +1000 |
commit | e11e1ea5d475ee8be0038d64aa3e47c776295ac2 (patch) | |
tree | 88fa00ef41babbec7cb33e68f400e3a1ff787230 /readconf.h | |
parent | c4bb91c79c0a05d2bbf2ac68b7be8421fb4957bf (diff) |
- djm@cvs.openbsd.org 2010/07/19 09:15:12
[clientloop.c readconf.c readconf.h ssh.c ssh_config.5]
add a "ControlPersist" option that automatically starts a background
ssh(1) multiplex master when connecting. This connection can stay alive
indefinitely, or can be set to automatically close after a user-specified
duration of inactivity. bz#1330 - patch by dwmw2 AT infradead.org, but
further hacked on by wmertens AT cisco.com, apb AT cequrux.com,
martin-mindrot-bugzilla AT earth.li and myself; "looks ok" markus@
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 66acafdef..95d104674 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.85 2010/06/25 23:15:36 djm Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.86 2010/07/19 09:15:12 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -114,6 +114,8 @@ typedef struct { | |||
114 | 114 | ||
115 | char *control_path; | 115 | char *control_path; |
116 | int control_master; | 116 | int control_master; |
117 | int control_persist; /* ControlPersist flag */ | ||
118 | int control_persist_timeout; /* ControlPersist timeout (seconds) */ | ||
117 | 119 | ||
118 | int hash_known_hosts; | 120 | int hash_known_hosts; |
119 | 121 | ||