tAdd connection delay enum instead of magic value - ratox - FIFO based tox client
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit d5338370b57342edea0c97a70035553547acf1d6
(DIR) parent b35b99442c64271effc44e65a9c422042ab5c1b2
(HTM) Author: sin <sin@2f30.org>
Date: Wed, 1 Oct 2014 18:00:27 +0100
Add connection delay enum instead of magic value
Diffstat:
M ratox.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/ratox.c b/ratox.c
t@@ -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",
t@@ -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();