diff options
author | FRIGN <dev@frign.de> | 2014-12-08 20:50:40 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-12-09 10:09:35 +0000 |
commit | 2373946754a95b676e5b899c15ce70d33cfdbfb4 (patch) | |
tree | 91eb424b21d1da8cd4fdd28a8792b9b4f90983ab /config.def.h | |
parent | c0c6381928c84d5cd3331f9b0fe1beb3908326c8 (diff) |
Add ability to specify save file as command line argument
Also, get closer to the STS (Single Tox Standard) by calling the
the save file "save file" and not "data file".
Additionally, augment the manual section about encrypting and
decrypting the save file.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 8889236..9ef00c1 100644 --- a/config.def.h +++ b/config.def.h @@ -1,12 +1,12 @@ /* See LICENSE file for copyright and license details. */ -#define DATAFILE ".ratox.tox" /* connection delay in seconds */ #define CONNECTDELAY 4 /* ringing delay in seconds */ #define RINGINGDELAY 16 #define MAXCALLS 8 -static int encryptdatafile = 0; +static char *savefile = ".ratox.tox"; +static int encryptsavefile = 0; static char proxyaddr[] = "localhost"; static uint16_t proxyport = 8080; |