summaryrefslogtreecommitdiffstats
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-12 01:08:17 +0200
committerBen Lindstrom <mouring@eviladmin.org>2001-04-12 01:08:17 +0200
commit6fa9d10ed579c29688e39cfa8d635fe8b511cb80 (patch)
treefdf3ea5fe8e3261addbdff5ac0d3a7d9c0bb7a51 /ssh.c
parent - markus@cvs.openbsd.org 2001/04/11 10:59:01 (diff)
downloadopenssh-6fa9d10ed579c29688e39cfa8d635fe8b511cb80.tar.xz
openssh-6fa9d10ed579c29688e39cfa8d635fe8b511cb80.zip
- markus@cvs.openbsd.org 2001/04/11 13:56:13
[channels.c ssh.c] https-connect and socks5 support. i feel so bad.
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index 89ced97e2..5180a8d7d 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.109 2001/04/11 10:59:01 markus Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.110 2001/04/11 13:56:13 markus Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -179,8 +179,9 @@ usage(void)
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 Dynamically forward local port to multiple remote addresses.\n");
- fprintf(stderr, " Allows SSH to act as an application-layer proxy.\n");
- fprintf(stderr, " Protocols Supported: SOCKS4\n");
+ fprintf(stderr, " Allows %s to act as an application-layer proxy.\n",
+ __progname);
+ fprintf(stderr, " Protocols supported: SOCKS4, SOCKS5, HTTPS\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");