diff options
author | FRIGN <dev@frign.de> | 2014-12-23 23:17:21 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-12-25 10:49:04 +0000 |
commit | 318a23146680384cd2012c1dd4151bdcb2f4f430 (patch) | |
tree | 5cf8c0d9530e9f5d48dc5c161d8746c6e9c66148 /config.def.h | |
parent | bd272e9943127ed846c9496bee2469d247a7fe18 (diff) |
Add ipv6-, tcp- and proxy-mode to config.def.h
There's no reason to prevent the user from setting this stuff at
compile time.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 2de95d2..9dd605b 100644 --- a/config.def.h +++ b/config.def.h @@ -9,11 +9,14 @@ /* Maximum number of simultaneous calls */ #define MAXCALLS 8 -static char *savefile = ".ratox.tox"; -static int encryptsavefile = 0; +static char *savefile = ".ratox.tox"; +static int encryptsavefile = 0; -static char proxyaddr[] = "localhost"; -static uint16_t proxyport = 8080; +static int ipv6 = 0; +static int tcp = 0; +static int proxy = 0; +static char proxyaddr[] = "localhost"; +static uint16_t proxyport = 8080; static struct node nodes[] = { { |