summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2016-06-03 03:14:41 +0000
committerDamien Miller <djm@mindrot.org>2016-06-08 11:39:31 +1000
commit8543ff3f5020fe659839b15f05b8c522bde6cee5 (patch)
treea8e83245849ea5102961bd386928f8ec287ebb82 /readconf.h
parent6b87311d3acdc460f926b2c40f4c4f3fd345f368 (diff)
upstream commit
Move the host and port used by ssh -W into the Options struct. This will make future changes a bit easier. ok djm@ Upstream-ID: 151bce5ecab2fbedf0d836250a27968d30389382
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index f0e498ea2..a8b0b9188 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.115 2016/05/04 12:21:53 markus Exp $ */ 1/* $OpenBSD: readconf.h,v 1.116 2016/06/03 03:14:41 dtucker Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -112,6 +112,10 @@ typedef struct {
112 struct Forward *remote_forwards; 112 struct Forward *remote_forwards;
113 int clear_forwardings; 113 int clear_forwardings;
114 114
115 /* stdio forwarding (-W) host and port */
116 char *stdio_forward_host;
117 int stdio_forward_port;
118
115 int enable_ssh_keysign; 119 int enable_ssh_keysign;
116 int64_t rekey_limit; 120 int64_t rekey_limit;
117 int rekey_interval; 121 int rekey_interval;