summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2014-12-24 11:54:24 +0100
committersin <sin@2f30.org>2014-12-25 10:49:16 +0000
commit4a4b188c9035f914666c6ce2f61b418a5ba58d4f (patch)
tree60f9920b777794300ed8ef193f36ea76822ac59e
parent318a23146680384cd2012c1dd4151bdcb2f4f430 (diff)
Change the command line parameters to reflect the config.def.h-changes
There must now be a way to explicitly disable proxy-mode and tcp-mode.
-rw-r--r--ratox.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/ratox.c b/ratox.c
index 7149ad9..cae3405 100644
--- a/ratox.c
+++ b/ratox.c
@@ -1968,12 +1968,18 @@ main(int argc, char *argv[])
case 'e':
encryptsavefile = 0;
break;
- case 't':
+ case 'T':
tcp = 1;
break;
- case 'p':
+ case 't':
+ tcp = 0;
+ break;
+ case 'P':
proxy = 1;
break;
+ case 'p':
+ proxy = 0;
+ break;
default:
usage();
} ARGEND;