diff options
author | FRIGN <dev@frign.de> | 2015-01-06 22:38:12 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2015-01-07 03:14:02 +0000 |
commit | 384067fc69a35126f6418ba219cadc925223c9b8 (patch) | |
tree | ecebdc9754a994b95c72f3bbe3ca1f0d4b77e880 /ratox.c | |
parent | ce3ae41642d1b1cdb72060b1036d0c6c7e6bed96 (diff) |
Implement proxy functionality as desired
Now we support both HTTP and SOCKS5 proxies. While at it, get rid
of the outdated usage string and just establish the fact we have
a bloody manpage for explanations.
Diffstat (limited to 'ratox.c')
-rw-r--r-- | ratox.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1191,7 +1191,7 @@ toxinit(void) snprintf(toxopt.proxy_address, sizeof(toxopt.proxy_address), "%s", proxyaddr); toxopt.proxy_port = proxyport; - toxopt.proxy_type = 1; + toxopt.proxy_type = proxytype; logmsg("Net > Using proxy %s:%hu\n", proxyaddr, proxyport); } @@ -1943,13 +1943,7 @@ shutdown(void) static void usage(void) { - eprintf("usage: %s [-4|-6] [-E|-e] [-tp] [savefile]\n" - " -4\tIPv4 only\n" - " -6\tIPv6 only\n" - " -E\tEnable save file encryption\n" - " -e\tDisable save file encryption\n" - " -t\tEnable TCP mode (UDP by default)\n" - " -p\tEnable TCP socks5 proxy\n", argv0); + eprintf("usage: %s [-4|-6] [-E|-e] [-T|-t] [-P|-p] [savefile]\n", argv0); } int |