diff options
author | 2001-08-29 23:13:10 +0000 | |
---|---|---|
committer | 2001-08-29 23:13:10 +0000 | |
commit | 649013cfed8e3f6686151efa86f8787df49d2642 (patch) | |
tree | b110ef2d90aaf2684de6be04866b257ab80c2c17 /usr.bin/ssh/ssh.c | |
parent | add text about -u0 preventing DNS requests; ok markus@ (diff) | |
download | wireguard-openbsd-649013cfed8e3f6686151efa86f8787df49d2642.tar.xz wireguard-openbsd-649013cfed8e3f6686151efa86f8787df49d2642.zip |
document -D and DynamicForward; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 0a49122cc2e..dadd0403ef4 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.139 2001/08/28 15:39:48 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.140 2001/08/29 23:13:10 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -186,6 +186,7 @@ usage(void) fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n"); fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname); fprintf(stderr, " forward them to the other side by connecting to host:port.\n"); + fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n"); fprintf(stderr, " -C Enable compression.\n"); fprintf(stderr, " -N Do not execute a shell or command.\n"); fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n"); |