blob: 02eb423c1a58bca9e29ddb54c351e887a393511b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
$NetBSD: patch-aa,v 1.1 2003/09/22 16:18:08 wiz Exp $
--- 6tunnel.c.orig Mon Sep 22 14:57:59 2003
+++ 6tunnel.c Mon Sep 22 15:02:38 2003
@@ -429,27 +429,27 @@
void usage(char *a0)
{
- fprintf(stderr, "\
-usage: %s [-146dqvh] [-s sourcehost] [-l localhost] [-i pass]
- [-I pass] [-m mapfile] [-L limit] [-A filename]
- localport remotehost [remoteport]
-
- -1 allow only one connection and quit
- -4 preffer IPv4 endpoints
- -6 bind to IPv6 address
- -v be verbose
- -d don't detach
- -f force tunneling (even if remotehost isn't resolvable)
- -s connect using specified address
- -l bind to specified address
- -i act like irc proxy and ask for password
- -I send specified password to the irc server
- -h print hex dump of packets
- -m map specified IPv4 addresses to different IPv6 addresses (see manpage)
- -L limit simultanous connections
- -A create apache-like log file
+ fprintf(stderr, "\n"
+"usage: %s [-146dqvh] [-s sourcehost] [-l localhost] [-i pass]\n"
+" [-I pass] [-m mapfile] [-L limit] [-A filename]\n"
+" localport remotehost [remoteport]\n"
+"\n"
+" -1 allow only one connection and quit\n"
+" -4 preffer IPv4 endpoints\n"
+" -6 bind to IPv6 address\n"
+" -v be verbose\n"
+" -d don't detach\n"
+" -f force tunneling (even if remotehost isn't resolvable)\n"
+" -s connect using specified address\n"
+" -l bind to specified address\n"
+" -i act like irc proxy and ask for password\n"
+" -I send specified password to the irc server\n"
+" -h print hex dump of packets\n"
+" -m map specified IPv4 addresses to different IPv6 addresses (see manpage)\n"
+" -L limit simultanous connections\n"
+" -A create apache-like log file\n"
+"\n", a0);
-", a0);
}
|