summaryrefslogtreecommitdiff
path: root/trackerlogic.h
diff options
context:
space:
mode:
Diffstat (limited to 'trackerlogic.h')
-rw-r--r--trackerlogic.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/trackerlogic.h b/trackerlogic.h
index 37e2451..596324e 100644
--- a/trackerlogic.h
+++ b/trackerlogic.h
@@ -7,6 +7,7 @@
7#include <sys/types.h> 7#include <sys/types.h>
8#include <sys/time.h> 8#include <sys/time.h>
9#include <time.h> 9#include <time.h>
10#include <stdint.h>
10 11
11/* Should be called BYTE, WORD, DWORD - but some OSs already have that and there's no #iftypedef */ 12/* Should be called BYTE, WORD, DWORD - but some OSs already have that and there's no #iftypedef */
12/* They mark memory used as data instead of integer or human readable string - 13/* They mark memory used as data instead of integer or human readable string -
@@ -39,7 +40,9 @@ typedef time_t ot_time;
39 40
40#define OT_POOLS_COUNT 9 41#define OT_POOLS_COUNT 9
41#define OT_POOLS_TIMEOUT (60*5) 42#define OT_POOLS_TIMEOUT (60*5)
42#define NOW (time(NULL)/OT_POOLS_TIMEOUT) 43
44extern time_t g_now;
45#define NOW (g_now/OT_POOLS_TIMEOUT)
43 46
44#define OT_VECTOR_MIN_MEMBERS 16 47#define OT_VECTOR_MIN_MEMBERS 16
45#define OT_VECTOR_GROW_RATIO 4 48#define OT_VECTOR_GROW_RATIO 4