blob: f41e83a9a6b650dedef71df64e625c725e868a28 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* See LICENSE file for copyright and license details. */
/* Connection delay in seconds */
#define CONNECTDELAY 3
/* Ringing delay in seconds */
#define RINGINGDELAY 16
/* Maximum number of simultaneous calls */
#define MAXCALLS 8
static char *savefile = ".ratox.tox";
static int encryptsavefile = 0;
static int ipv6 = 0;
static int tcp = 0;
static int proxy = 0;
static int proxytype = 2; /* 1 = HTTP, 2 = SOCKS5 */
static char proxyaddr[] = "localhost";
static uint16_t proxyport = 8080;
#include "nodes.h"
|