From d5338370b57342edea0c97a70035553547acf1d6 Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 1 Oct 2014 18:00:27 +0100 Subject: Add connection delay enum instead of magic value --- ratox.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ratox.c') diff --git a/ratox.c b/ratox.c index b0d7dc7..f9ff2da 100644 --- 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(); -- cgit v1.2.3