Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Link against shlwapi.lib and unify linker input sources for Windows
  • Loading branch information
kwolekr committed Apr 8, 2015
1 parent d2fc98e commit c758fd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 3 additions & 1 deletion src/CMakeLists.txt
Expand Up @@ -195,8 +195,10 @@ if(WIN32)
# Surpress some useless warnings
add_definitions ( /D "_CRT_SECURE_NO_DEPRECATE" /W1 )
else() # Probably MinGW = GCC
set(PLATFORM_LIBS ws2_32.lib)
set(PLATFORM_LIBS "")
endif()
set(PLATFORM_LIBS ws2_32.lib shlwapi.lib ${PLATFORM_LIBS})

# Zlib stuff
set(ZLIB_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/../../zlib/zlib-1.2.5"
CACHE PATH "Zlib include directory")
Expand Down
13 changes: 5 additions & 8 deletions src/socket.cpp
Expand Up @@ -44,9 +44,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#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
Expand Down Expand Up @@ -154,7 +151,7 @@ void Address::Resolve(const char *name)

struct addrinfo *resolved, hints;
memset(&hints, 0, sizeof(hints));

// Setup hints
hints.ai_socktype = 0;
hints.ai_protocol = 0;
Expand All @@ -168,7 +165,7 @@ void Address::Resolve(const char *name)
{
hints.ai_family = AF_INET;
}

// Do getaddrinfo()
int e = getaddrinfo(name, NULL, &hints, &resolved);
if(e != 0)
Expand Down Expand Up @@ -514,7 +511,7 @@ int UDPSocket::Receive(Address & sender, void *data, int size)
dstream << (int) m_handle << " <- ";
sender.print(&dstream);
dstream << ", size=" << received;

// Print packet contents
dstream << ", data=";
for(int i = 0; i < received && i < 20; i++) {
Expand All @@ -525,7 +522,7 @@ int UDPSocket::Receive(Address & sender, void *data, int size)
}
if(received > 20)
dstream << "...";

dstream << std::endl;
}

Expand Down Expand Up @@ -586,7 +583,7 @@ bool UDPSocket::WaitData(int timeout_ms)
// No data
return false;
}

// There is data
return true;
}

0 comments on commit c758fd7

Please sign in to comment.