summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-06-16 13:19:41 +1000
committerDamien Miller <djm@mindrot.org>2005-06-16 13:19:41 +1000
commitd14b1e731cf4cb79c3ff5ced9315cc11f1fceced (patch)
tree9ae43dce762d8452154b48d4a5b792ecd2db487e /readconf.h
parentac7ef6a7360f7b1e417790d288f42f474c4ceb55 (diff)
- 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.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index de4b4cb27..2b9deb9db 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.66 2005/03/01 10:40:27 djm Exp $ */ 1/* $OpenBSD: readconf.h,v 1.67 2005/06/08 11:25:09 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -116,6 +116,11 @@ typedef struct {
116 int hash_known_hosts; 116 int hash_known_hosts;
117} Options; 117} Options;
118 118
119#define SSHCTL_MASTER_NO 0
120#define SSHCTL_MASTER_YES 1
121#define SSHCTL_MASTER_AUTO 2
122#define SSHCTL_MASTER_ASK 3
123#define SSHCTL_MASTER_AUTO_ASK 4
119 124
120void initialize_options(Options *); 125void initialize_options(Options *);
121void fill_default_options(Options *); 126void fill_default_options(Options *);