]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Remove always enabled USE_64_BIT_COUNTERS define
authorArne Schwabe <arne@rfc2549.org>
Wed, 21 Apr 2021 13:43:44 +0000 (15:43 +0200)
committerGert Doering <gert@greenie.muc.de>
Thu, 22 Apr 2021 06:34:48 +0000 (08:34 +0200)
Also change the types to use C99 uint64_t and its printf u64 define.

Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Acked-by: Antonio Quartulli <antonio@openvpn.net>
Message-Id: <20210421134348.1950392-3-arne@rfc2549.org>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg22171.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
src/openvpn/common.h
src/openvpn/syshead.h

index 0f732008aa52abb08e348fb8864a2293e879bde5..22722571c056ce81c7ee34ca4a675e5162ae4bc3 100644 (file)
 #define COMMON_H
 
 /*
- * Statistics counters and associated printf formats.
+ * Statistics counters and associated printf format.
  */
-#ifdef USE_64_BIT_COUNTERS
-typedef unsigned long long int counter_type;
-#ifdef _WIN32
-#define counter_format  "%I64u"
-#else
-#define counter_format  "%llu"
-#endif
-#else  /* ifdef USE_64_BIT_COUNTERS */
-typedef unsigned int counter_type;
-#define counter_format   "%u"
-#endif
+typedef uint64_t counter_type;
+#define counter_format  "%" PRIu64
 
 /*
  * Time intervals
index 3ac9d70c370bdf3462081053e9896211abbe2346..05d790ad927358a4c4826f08f48880c99e164b1e 100644 (file)
@@ -496,11 +496,6 @@ socket_defined(const socket_descriptor_t sd)
     return sd != SOCKET_UNDEFINED;
 }
 
-/*
- * Should statistics counters be 64 bits?
- */
-#define USE_64_BIT_COUNTERS
-
 /*
  * Should we enable the use of execve() for calling subprocesses,
  * instead of system()?