Tune caves
[oweals/minetest.git] / src / socket.cpp
index 7b70d429564002c3be7c6c53caa332d861639713..caf1895fe6037596e3d570f768868b89b48fb711 100644 (file)
@@ -18,6 +18,33 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 */
 
 #include "socket.h"
+
+#ifdef _WIN32
+       #define WIN32_LEAN_AND_MEAN
+       // Without this some of the network functions are not found on mingw
+       #ifndef _WIN32_WINNT
+               #define _WIN32_WINNT 0x0501
+       #endif
+       #include <windows.h>
+       #include <winsock2.h>
+       #include <ws2tcpip.h>
+       #ifdef _MSC_VER
+               #pragma comment(lib, "ws2_32.lib")
+       #endif
+typedef SOCKET socket_t;
+typedef int socklen_t;
+#else
+       #include <sys/types.h>
+       #include <sys/socket.h>
+       #include <netinet/in.h>
+       #include <fcntl.h>
+       #include <netdb.h>
+       #include <unistd.h>
+       #include <arpa/inet.h>
+typedef int socket_t;
+#endif
+
+#include "constants.h"
 #include "debug.h"
 #include <stdio.h>
 #include <iostream>
@@ -25,9 +52,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #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 ""
 
@@ -227,7 +253,8 @@ void UDPSocket::Send(const Address & destination, const void * data, int size)
                dstream<<", size="<<size<<", data=";
                for(int i=0; i<size && i<20; i++){
                        if(i%2==0) DEBUGPRINT(" ");
-                       DEBUGPRINT("%.2X", ((int)((const char*)data)[i])&0xff);
+                       unsigned int a = ((const unsigned char*)data)[i];
+                       DEBUGPRINT("%.2X", a);
                }
                if(size>20)
                        dstream<<"...";
@@ -289,7 +316,8 @@ int UDPSocket::Receive(Address & sender, void * data, int size)
                dstream<<", size="<<received<<", data=";
                for(int i=0; i<received && i<20; i++){
                        if(i%2==0) DEBUGPRINT(" ");
-                       DEBUGPRINT("%.2X", ((int)((const char*)data)[i])&0xff);
+                       unsigned int a = ((const unsigned char*)data)[i];
+                       DEBUGPRINT("%.2X", a);
                }
                if(received>20)
                        dstream<<"...";