http: Prevent Windows header leak from HTTPClient.

This commit is contained in:
Unknown W. Brackets
2021-01-09 14:45:03 -08:00
parent e00f894340
commit b60074f697
3 changed files with 8 additions and 13 deletions
+5
View File
@@ -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>