Lower registration timeout to 1 minute

This commit is contained in:
emanuele-f 2019-05-22 22:21:26 +02:00
parent 9b97684f0d
commit b6d12c009c

10
n2n.c
View File

@ -22,14 +22,8 @@
#include <assert.h> #include <assert.h>
#if defined(DEBUG) #define PURGE_REGISTRATION_FREQUENCY 30
# define PURGE_REGISTRATION_FREQUENCY 60 #define REGISTRATION_TIMEOUT 60
# define REGISTRATION_TIMEOUT 120
#else /* #if defined(DEBUG) */
# define PURGE_REGISTRATION_FREQUENCY 60
# define REGISTRATION_TIMEOUT (60*20)
#endif /* #if defined(DEBUG) */
const uint8_t broadcast_addr[6] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; const uint8_t broadcast_addr[6] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
const uint8_t multicast_addr[6] = { 0x01, 0x00, 0x5E, 0x00, 0x00, 0x00 }; /* First 3 bytes are meaningful */ const uint8_t multicast_addr[6] = { 0x01, 0x00, 0x5E, 0x00, 0x00, 0x00 }; /* First 3 bytes are meaningful */