ratox

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

commit d5338370b57342edea0c97a70035553547acf1d6
parent b35b99442c64271effc44e65a9c422042ab5c1b2
Author: sin <sin@2f30.org>
Date:   Wed,  1 Oct 2014 18:00:27 +0100

Add connection delay enum instead of magic value

Diffstat:
Mratox.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ratox.c b/ratox.c @@ -28,6 +28,10 @@ #define DATAFILE ".ratox.data" +enum { + CONNECTDELAY = 5, /* in seconds */ +}; + const char *reqerr[] = { [-TOX_FAERR_TOOLONG] = "Message is too long", [-TOX_FAERR_NOMESSAGE] = "Please add a message to your request", @@ -1409,7 +1413,7 @@ loop(void) connected = 0; } t1 = time(NULL); - if (t1 > t0 + 5) { + if (t1 > t0 + CONNECTDELAY) { t0 = time(NULL); printout("DHT > Connecting\n"); toxconnect();