diff options
author | djm <djm> | 2005-06-16 03:19:41 +0000 |
---|---|---|
committer | djm <djm> | 2005-06-16 03:19:41 +0000 |
commit | 349fca5f2b1c9a35c930cfd520975ad3dce338c7 (patch) | |
tree | d687c3de48d50f3d2fe5ae2cb75dec06198740fe /readconf.h | |
parent | a6fbbab9553620bf33764c3ac4ed745d5f379746 (diff) | |
download | openssh-349fca5f2b1c9a35c930cfd520975ad3dce338c7.tar.gz |
- djm@cvs.openbsd.org 2005/06/08 11:25:09
[clientloop.c readconf.c readconf.h ssh.c ssh_config.5]
add ControlMaster=auto/autoask options to support opportunistic
multiplexing; tested avsm@ and jakob@, ok markus@
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.66 2005/03/01 10:40:27 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.67 2005/06/08 11:25:09 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -116,6 +116,11 @@ typedef struct { int hash_known_hosts; } Options; +#define SSHCTL_MASTER_NO 0 +#define SSHCTL_MASTER_YES 1 +#define SSHCTL_MASTER_AUTO 2 +#define SSHCTL_MASTER_ASK 3 +#define SSHCTL_MASTER_AUTO_ASK 4 void initialize_options(Options *); void fill_default_options(Options *); |