Skip to content

Commit

Permalink
http: Prevent Windows header leak from HTTPClient.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Jan 9, 2021
1 parent e00f894 commit b60074f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
5 changes: 5 additions & 0 deletions Common/Net/HTTPClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@
#include "Common/StringUtils.h"

#ifndef _WIN32
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
#include <unistd.h>
#define closesocket close
#else
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <winsock2.h>
#include <ws2tcpip.h>
#include <io.h>
Expand Down
13 changes: 0 additions & 13 deletions Common/Net/HTTPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,6 @@

#include "Common/Net/Resolve.h"

#ifdef _WIN32
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netdb.h>
#endif

#include "Common/Buffer.h"

namespace net {
Expand Down
3 changes: 3 additions & 0 deletions Core/Util/GameManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
#else
#include "ext/libzip/zip.h"
#endif
#ifdef _WIN32
#include "Common/CommonWindows.h"
#endif
#include "Common/Data/Encoding/Utf8.h"
#include "Common/Data/Format/IniFile.h"
#include "Common/Log.h"
Expand Down

0 comments on commit b60074f

Please sign in to comment.