diff options
author | Damien Miller <djm@mindrot.org> | 2013-08-21 02:44:24 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-08-21 02:44:24 +1000 |
commit | 1262b6638f7d01ab110fd373dd90d915c882fe1a (patch) | |
tree | a8f3e50f3d0223f037ebf2193f11bf7d992863f7 /readconf.h | |
parent | b7727df37efde4dbe4f5a33b19cbf42022aabf66 (diff) |
- djm@cvs.openbsd.org 2013/08/20 00:11:38
[readconf.c readconf.h ssh_config.5 sshconnect.c]
Add a ssh_config ProxyUseFDPass option that supports the use of
ProxyCommands that establish a connection and then pass a connected
file descriptor back to ssh(1). This allows the ProxyCommand to exit
rather than have to shuffle data back and forth and enables ssh to use
getpeername, etc. to obtain address information just like it does with
regular directly-connected sockets. 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 23fc500da..ca4a042ad 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.95 2013/05/16 04:27:50 djm Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.96 2013/08/20 00:11:38 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -138,6 +138,8 @@ typedef struct { | |||
138 | 138 | ||
139 | int request_tty; | 139 | int request_tty; |
140 | 140 | ||
141 | int proxy_use_fdpass; | ||
142 | |||
141 | char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ | 143 | char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ |
142 | } Options; | 144 | } Options; |
143 | 145 | ||