Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use inet_pton() with the mingw compiler?

I'm trying to add IPv6 compatibility to an already IPv4-compatible program in C, but having some problems with the compiler. Currently compiling with mingw32-gcc-4.6.2, which gives me a linking error when using the function inet_pton.

I've tried making it compile for vista(as inet_pton is a vista function), but it seems like the whole function is missing from mingw.

Is there any way to add it to mingw, or any other options I may have missed?

like image 227
HNeset Avatar asked Mar 12 '13 19:03

HNeset


1 Answers

I experienced a similar issue with inet_ntop.

You may need to set _WIN32_WINNT to a code representing the minimum supported Windows version. That enables the APIs that are only supported in the more recent versions of Windows. MSVC does this for you, MinGW does not, but it is easy to fix.

So for example if you wanted to support Windows 7+, #define _WIN32_WINNT 0x0601


Consult https://docs.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt

//
// _WIN32_WINNT version constants
//
#define _WIN32_WINNT_NT4                    0x0400 // Windows NT 4.0
#define _WIN32_WINNT_WIN2K                  0x0500 // Windows 2000
#define _WIN32_WINNT_WINXP                  0x0501 // Windows XP
#define _WIN32_WINNT_WS03                   0x0502 // Windows Server 2003
#define _WIN32_WINNT_WIN6                   0x0600 // Windows Vista
#define _WIN32_WINNT_VISTA                  0x0600 // Windows Vista
#define _WIN32_WINNT_WS08                   0x0600 // Windows Server 2008
#define _WIN32_WINNT_LONGHORN               0x0600 // Windows Vista
#define _WIN32_WINNT_WIN7                   0x0601 // Windows 7
#define _WIN32_WINNT_WIN8                   0x0602 // Windows 8
#define _WIN32_WINNT_WINBLUE                0x0603 // Windows 8.1
#define _WIN32_WINNT_WINTHRESHOLD           0x0A00 // Windows 10
#define _WIN32_WINNT_WIN10                  0x0A00 // Windows 10
like image 149
Den-Jason Avatar answered Oct 10 '22 15:10

Den-Jason