From 76d4d6b2bafada7b790e817b7324d53f3d3a0c7f Mon Sep 17 00:00:00 2001 From: David Timber Date: Thu, 20 Aug 2020 12:23:35 +0930 Subject: Progress ... * Move DVault out of executable. Dynamically load it on startup * Improved testing scheme * Tidy up prne_*assert* macro series * Protocol: store host credentials in base64 string. No mask * Use the lock shm as a shared_global so the stats can persist * mmap() the executable read-only for later use --- src/config.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/config.c') diff --git a/src/config.c b/src/config.c index f333c06..8d78947 100644 --- a/src/config.c +++ b/src/config.c @@ -1,8 +1,6 @@ #include "config.h" -const uint8_t PRNE_PROG_VER[16] = { 0x11, 0xf7, 0x6b, 0x87, 0x62, 0x1a, 0x47, 0x9c, 0xa2, 0x18, 0x5c, 0x55, 0x40, 0x33, 0x7c, 0x9f }; - const prne_arch_t prne_host_arch = #ifdef __GNUC__ #if defined(__i386__) -- cgit