diff options
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index ea65ffda3..caf1895fe 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -52,9 +52,8 @@ typedef int socket_t; #include <errno.h> #include "utility.h" -// Debug printing options -// Set to 1 for debug output -#define DP 0 +bool socket_enable_debug_output = false; +#define DP socket_enable_debug_output // This is prepended to everything printed here #define DPS "" |