From 6788efa3459b9581b1e4197e37f504d8fb2e8e87 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Wed, 31 Dec 2014 23:39:21 +0100 Subject: [SERVER] Use stdbool.h for booleans; minor refactoring of variable and function names --- src/server/globals.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/server/globals.c') diff --git a/src/server/globals.c b/src/server/globals.c index 0f26169..1e35a8f 100644 --- a/src/server/globals.c +++ b/src/server/globals.c @@ -8,18 +8,18 @@ char *_configDir = NULL; char *_basePath = NULL; -int _vmdkLegacyMode = FALSE; -int _shutdown = 0; +bool _vmdkLegacyMode = false; +bool _shutdown = false; int _serverPenalty = 0; int _clientPenalty = 0; -int _isProxy = FALSE; -int _proxyPrivateOnly = FALSE; +bool _isProxy = false; +bool _proxyPrivateOnly = false; +bool _backgroundReplication = true; int _uplinkTimeout = 1250; int _clientTimeout = 15000; -int _backgroundReplication = TRUE; #define SAVE_TO_VAR_STR(ss, kk) do { if (strcmp(section, #ss) == 0 && strcmp(key, #kk) == 0) { if (_ ## kk != NULL) free(_ ## kk); _ ## kk = strdup(value); } } while (0) -#define SAVE_TO_VAR_BOOL(ss, kk) do { if (strcmp(section, #ss) == 0 && strcmp(key, #kk) == 0) _ ## kk = atoi(value) != 0 || strcmp(value, "true") == 0 || strcmp(value, "True") == 0 || strcmp(value, "TRUE") == 0; } while (0) +#define SAVE_TO_VAR_BOOL(ss, kk) do { if (strcmp(section, #ss) == 0 && strcmp(key, #kk) == 0) _ ## kk = atoi(value) != 0 || strcmp(value, "true") == 0 || strcmp(value, "True") == 0 || strcmp(value, "true") == 0; } while (0) #define SAVE_TO_VAR_INT(ss, kk) do { if (strcmp(section, #ss) == 0 && strcmp(key, #kk) == 0) _ ## kk = atoi(value); } while (0) static int ini_handler(void *custom, const char* section, const char* key, const char* value) @@ -33,7 +33,7 @@ static int ini_handler(void *custom, const char* section, const char* key, const SAVE_TO_VAR_INT( dnbd3, clientPenalty ); SAVE_TO_VAR_INT( dnbd3, uplinkTimeout ); SAVE_TO_VAR_INT( dnbd3, clientTimeout ); - return TRUE; + return 1; } void globals_loadConfig() -- cgit v1.2.3-55-g7522