From 23aa36ad40a5cbfb7505e441e14d6b2d69ecbfb0 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Mon, 27 Jul 2015 11:49:51 +0200 Subject: [PATCH] indicate that IPv4/IPv6 proxy use SOCKS5 protocol --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index ed364fa..8058ad0 100644 --- a/main.cpp +++ b/main.cpp @@ -44,8 +44,8 @@ public: "-d Number of DNS server threads (default 4)\n" "-p UDP port to listen on (default 53)\n" "-o Tor proxy IP/Port\n" - "-i IPV4 proxy IP/Port\n" - "-k IPV6 proxy IP/Port\n" + "-i IPV4 SOCKS5 proxy IP/Port\n" + "-k IPV6 SOCKS5 proxy IP/Port\n" "--testnet Use testnet\n" "--wipeban Wipe list of banned nodes\n" "--wipeignore Wipe list of ignored nodes\n" @@ -63,7 +63,7 @@ public: {"port", required_argument, 0, 'p'}, {"onion", required_argument, 0, 'o'}, {"proxyipv4", required_argument, 0, 'i'}, - {"proxyipv6", required_argument, 0, 'ik'}, + {"proxyipv6", required_argument, 0, 'k'}, {"testnet", no_argument, &fUseTestNet, 1}, {"wipeban", no_argument, &fWipeBan, 1}, {"wipeignore", no_argument, &fWipeBan, 1},