From acf0b7a45171555eba2c10a6ef84f915c62f6791 Mon Sep 17 00:00:00 2001 From: David Timber Date: Mon, 24 Aug 2020 09:37:43 +0930 Subject: * htbt checkpoint * Change PRNE_BUILD_ENTROPY to uint8_t array * endian.h problem * Remove "-I." CFLAG added by Automake () * Moved endian conversion macros to endian.h * Moved DNS server config from config.h to resolv.h to reduce compile time * Refactor resolv_ensure_act_dns_fd() to reduce binary size --- proone.code-workspace | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'proone.code-workspace') diff --git a/proone.code-workspace b/proone.code-workspace index d5a881f..aa336bb 100644 --- a/proone.code-workspace +++ b/proone.code-workspace @@ -5,13 +5,15 @@ } ], "settings": { + "editor.tabSize": 4, "editor.insertSpaces": false, + "files.trimTrailingWhitespace": true, "C_Cpp.default.cStandard": "c11", "C_Cpp.default.defines": [ // "_POSIX_C_SOURCE=200112L", "_GNU_SOURCE=1", // TODO: remove "PRNE_DEBUG", - "PRNE_BUILD_ENTROPY=\"84532ab2-0857-4137-9daf-abd990684889\"", + "PRNE_BUILD_ENTROPY={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }", "PRNE_BIN_ALIGNMENT=8"], "C_Cpp.default.compilerArgs": [ "-pedantic", -- cgit