Guillaume Buisson
2021-05-20 c914d298604ef7ad3934c3c213d3f8822d6646d9
src/library/os/network.hpp
@@ -14,7 +14,10 @@
#include <netdb.h>
#define LCC_ADAPTER_DESCRIPTION_LEN NI_MAXHOST
#else
//mingw cross compile for Windows
#ifdef _MSC_VER
#include <Windows.h>
#endif
#include <iphlpapi.h>
#define LCC_ADAPTER_DESCRIPTION_LEN MAX_ADAPTER_DESCRIPTION_LENGTH
#endif
@@ -30,7 +33,7 @@
typedef struct {
   int id;
   char description[LCC_ADAPTER_DESCRIPTION_LEN + 1];
   unsigned char mac_address[8];
   unsigned char mac_address[6];
   unsigned char ipv4_address[4];
   IFACE_TYPE type;
} OsAdapterInfo;