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/auth.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/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index afde0c7587d..161b80b3cd1 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.105 2014/07/03 11:16:55 djm Exp $ */ +/* $OpenBSD: auth.c,v 1.106 2014/07/15 15:54:14 millert Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -43,6 +43,7 @@ #include "groupaccess.h" #include "log.h" #include "buffer.h" +#include "misc.h" #include "servconf.h" #include "key.h" #include "hostfile.h" @@ -50,7 +51,6 @@ #include "auth-options.h" #include "canohost.h" #include "uidswap.h" -#include "misc.h" #include "packet.h" #ifdef GSSAPI #include "ssh-gss.h" |