Tune caves
[oweals/minetest.git] / src / socket.h
index b6b58007392dc5a6b40347251d650cfa9070ee6b..ac26b575c78b346a21357bf329549165400d0e4d 100644 (file)
@@ -20,26 +20,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef SOCKET_HEADER
 #define SOCKET_HEADER
 
-#ifdef _WIN32
-       #define WIN32_LEAN_AND_MEAN
-       #include <windows.h>
-       #include <winsock2.h>
-       #include <ws2tcpip.h>
-       #pragma comment(lib, "wsock32.lib")
-typedef SOCKET socket_t;
-typedef int socklen_t;
-#else
-       #include <sys/socket.h>
-       #include <netinet/in.h>
-       #include <fcntl.h>
-       #include <netdb.h>
-       #include <unistd.h>
-typedef int socket_t;
-#endif
-
 #include <ostream>
 #include "exceptions.h"
-#include "constants.h"
+
+extern bool socket_enable_debug_output;
 
 class SocketException : public BaseException
 {
@@ -85,9 +69,12 @@ public:
        unsigned int getAddress() const;
        unsigned short getPort() const;
        void setAddress(unsigned int address);
+       void setAddress(unsigned int a, unsigned int b,
+                       unsigned int c, unsigned int d);
        void setPort(unsigned short port);
        void print(std::ostream *s) const;
        void print() const;
+       std::string serializeString() const;
 private:
        unsigned int m_address;
        unsigned short m_port;