summaryrefslogtreecommitdiffstats
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 f0e498ea..a8b0b918 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.h,v 1.115 2016/05/04 12:21:53 markus Exp $ */
+/* $OpenBSD: readconf.h,v 1.116 2016/06/03 03:14:41 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -112,6 +112,10 @@ typedef struct {
struct Forward *remote_forwards;
int clear_forwardings;
+ /* stdio forwarding (-W) host and port */
+ char *stdio_forward_host;
+ int stdio_forward_port;
+
int enable_ssh_keysign;
int64_t rekey_limit;
int rekey_interval;