6

I have a C program that uses getaddrinfo(). It works as expected on Linux and Mac OS X.

I'm in the middle of porting it to Windows.

When I compile it (with MinGW gcc) I get the following warnings:

ext/socket/socket.c: In function 'sl_tcp_socket_init':
ext/socket/socket.c:98:5: warning implicit declaration of function 'getaddrinfo' [-Wimplicit-function-declaration]
ext/socket/socket.c:104:9: warning implicit declaration of function 'freeaddrinfo' [-Wimplicit-function-declaration]

Then the entire thing fails to link with undefined references to getaddrinfo() and freeaddrinfo().

Now, according to this MSDN page, getaddrinfo() is supported on Windows and is located in the header file Ws2tcpip.h and the library file Ws2_32.lib.

I'm including Ws2tcpip.h and linking with -lWs2_32, so I'm not sure why this isn't working.

4

3 に答える 3

11

ws2tcpip.h の 297 行を見ると、_WIN32_WINNT の値のチェックがあることがわかります。

#if (_WIN32_WINNT >= 0x0501)
void WSAAPI freeaddrinfo (struct addrinfo*);
int WSAAPI getaddrinfo (const char*,const char*,const struct addrinfo*,
                struct addrinfo**);
int WSAAPI getnameinfo(const struct sockaddr*,socklen_t,char*,DWORD,
               char*,DWORD,int);
#else
/* FIXME: Need WS protocol-independent API helpers.  */
#endif

_WIN32_WINNTインクルードの前に#define するだけです。

于 2012-10-07T03:19:34.880 に答える
0

コードをコンパイラ全体で使用したい場合は、実際にNTDDI_VERSIONは と同じ OS バージョンで定義する必要があります_WIN32_WINNT。その定義がないと、一部のコンパイラ (つまり、Watcom) で_WIN32_WINNT使用できなくなります。getaddrinfo()Windows SDK と同じ方法でラップすることをお勧めします。

#define _NTDDI_VERSION_FROM_WIN32_WINNT2(ver)    ver##0000
#define _NTDDI_VERSION_FROM_WIN32_WINNT(ver)     _NTDDI_VERSION_FROM_WIN32_WINNT2(ver)

#ifndef _WIN32_WINNT
#  define _WIN32_WINNT 0x501
#endif
#ifndef NTDDI_VERSION
#  define NTDDI_VERSION _NTDDI_VERSION_FROM_WIN32_WINNT(_WIN32_WINNT)
#endif
于 2016-06-13T20:19:41.137 に答える
-1

おそらくこれを修正する適切な方法は次のとおりです。

#define WINVER WindowsXP

または、おそらくより賢明にあなたのに追加-DWINVER=WindowsXPしますCPPFLAGS

参照: http://mingw.5.n7.nabble.com/Undefined-reference-to-getaddrinfo-td5694.html

注:しかし、私にはうまくいきませんでした。

于 2013-05-23T14:31:50.170 に答える