From 2671b9af1b9b492e32cbe204bbeca5a3af35cf0c Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Thu, 22 Mar 2012 13:41:50 +0200 Subject: Move headers from socket.h to socket.cpp --- src/socket.h | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'src/socket.h') diff --git a/src/socket.h b/src/socket.h index 74b5fb643..fe542dfcc 100644 --- a/src/socket.h +++ b/src/socket.h @@ -20,33 +20,8 @@ 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 - // Without this some of the network functions are not found on mingw - #ifndef _WIN32_WINNT - #define _WIN32_WINNT 0x0501 - #endif - #include - #include - #include - #ifdef _MSC_VER - #pragma comment(lib, "ws2_32.lib") - #endif -typedef SOCKET socket_t; -typedef int socklen_t; -#else - #include - #include - #include - #include - #include - #include -typedef int socket_t; -#endif - #include #include "exceptions.h" -#include "constants.h" class SocketException : public BaseException { -- cgit v1.2.3