diff options
author | 2014-07-15 15:54:14 +0000 | |
---|---|---|
committer | 2014-07-15 15:54:14 +0000 | |
commit | a021549948d44046acb30dc986ea0d38437f8146 (patch) | |
tree | 6cf2e1c14138430780731c2edb32e7f5269e0a58 /usr.bin/ssh/sshconnect.c | |
parent | conserver moved port, ok ajacoutot@ (diff) | |
download | wireguard-openbsd-a021549948d44046acb30dc986ea0d38437f8146.tar.xz wireguard-openbsd-a021549948d44046acb30dc986ea0d38437f8146.zip |
Add support for Unix domain socket forwarding. A remote TCP port
may be forwarded to a local Unix domain socket and vice versa or
both ends may be a Unix domain socket. This is a reimplementation
of the streamlocal patches by William Ahern from:
http://www.25thandclement.com/~william/projects/streamlocal.html
OK djm@ markus@
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index e528e02334a..69ae94c5f0a 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.250 2014/07/03 22:23:46 djm Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.251 2014/07/15 15:54:14 millert Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -44,9 +44,9 @@ #include "sshconnect.h" #include "hostfile.h" #include "log.h" +#include "misc.h" #include "readconf.h" #include "atomicio.h" -#include "misc.h" #include "dns.h" #include "roaming.h" #include "monitor_fdpass.h" |