ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

config.def.h (1021B)


      1 /* See LICENSE file for copyright and license details. */
      2 
      3 /* Connection delay in seconds */
      4 #define CONNECTDELAY 3
      5 
      6 /* Ringing delay in seconds */
      7 #define RINGINGDELAY 16
      8 
      9 /* Maximum number of simultaneous calls */
     10 #define MAXCALLS 8
     11 
     12 /* Audio settings definition */
     13 #define AUDIOCHANNELS     1
     14 #define AUDIOBITRATE      32
     15 #define AUDIOFRAME        20
     16 #define AUDIOSAMPLERATE   48000
     17 
     18 /* Video settings definition */
     19 #define VIDEOWIDTH        1280
     20 #define VIDEOHEIGHT       720
     21 #define VIDEOBITRATE      2500
     22 
     23 static int   friendmsg_log = 1;
     24 static int   confmsg_log   = 0;
     25 
     26 static char *savefile        = ".ratox.tox";
     27 static int   encryptsavefile = 0;
     28 
     29 static int                 ipv6        = 0;
     30 static int                 tcp         = 0;
     31 static int                 proxy       = 0;
     32 static TOX_PROXY_TYPE      proxytype   = TOX_PROXY_TYPE_SOCKS5; /* NONE, HTTP, SOCKS5 */
     33 static int                 quiet       = 0;
     34 static char     proxyaddr[] = "localhost";
     35 static uint16_t proxyport   = 8080;
     36 
     37 #include "nodes.h"