Fix winsock2 warning

This commit is contained in:
Mike Black W9MDB 2024-09-18 08:01:17 -05:00
parent 2a47377243
commit 31b625df2b

View File

@ -43,8 +43,8 @@
// to stop warnings about including winsock2.h before windows.h
#if defined(_WIN32)
#include <windows.h>
#include <winsock2.h>
#include <windows.h>
#include <ws2tcpip.h>
#else
#include <sys/socket.h>