diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-11 00:00:38 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2017-02-11 09:46:00 +0100 |
commit | f0ef4bdbf66ed12e52ff33da90d79af0cbc00436 (patch) | |
tree | aec1f2d3cd90a9126ef6e6f8527d59c48441ca00 /include | |
parent | 2da76c5db47aeabb91669d6ca9c4da92911fbec9 (diff) | |
download | ouroboros-f0ef4bdbf66ed12e52ff33da90d79af0cbc00436.tar.gz ouroboros-f0ef4bdbf66ed12e52ff33da90d79af0cbc00436.zip |
ipcpd: Compare timestamp upon enrollment
The enrollment procedure will ask for a timestamp of the IPCP it is
enrolling with. It will (taking into account the RTT of the request)
issue a warning if the offset is larger than RIB_WARN_TIME_OFFSET ms.
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/config.h.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/ouroboros/config.h.in b/include/ouroboros/config.h.in index b95fe927..c1b6bd02 100644 --- a/include/ouroboros/config.h.in +++ b/include/ouroboros/config.h.in @@ -50,11 +50,9 @@ #define IRMD_THREADPOOL_SIZE 16 #define IPCPD_THREADPOOL_SIZE 3 #define IPCPD_MAX_CONNS IRMD_MAX_FLOWS -#define LOG_DIR "/@LOG_DIR@/" #define PTHREAD_COND_CLOCK CLOCK_MONOTONIC #define PFT_SIZE 1 << 12 /* Timeout values */ -#define SHM_DU_TIMEOUT_MICROS 15000 #define IRMD_ACCEPT_TIMEOUT 100 #define IRMD_FLOW_TIMEOUT 5000 #define IPCP_ACCEPT_TIMEOUT 100 @@ -63,9 +61,9 @@ #define ENROLL_TIMEOUT 2000 /* RIB configuration for normal */ #define RIB_MAX_PATH_LEN 256 -#define BOOT_NAME "boot" -#define MEMBERS_NAME "members" -#define DIF_NAME "dif_name" -#define DIR_NAME "directory" +#define BOOT_NAME "boot" +#define MEMBERS_NAME "members" +#define DIF_NAME "dif_name" +#define DIR_NAME "directory" #endif /* OUROBOROS_CONFIG */ |