getaddrinfo()无法解析winsock

时间:2012-03-30 21:45:59

标签: c++ windows sockets winsock getaddrinfo

我遇到了让winsock工作的问题,我只是感到困惑,并且真的不知道下一步该尝试什么。

getaddrinfo(NULL)就是为了表明它识别出getaddrinfo应该具有哪些参数,但它仍然表示它无法解决它。

当我尝试在命令行中编译它并添加一些错误标志时,这就是我得到的:

C:\MinGW\bin>g++ -O0 -g3 -Wall -c -fmessage-length=0 -o test2.exe C:\Users\David\
workspace\vmulti\Debug\test2.o -lws2_32 -lmingw32
g++: warning: C:\Users\David\workspace\vmulti\Debug\test2.o: linker input file un
used because linking not done

这是编译器抛出的错误,我正在使用mingw进行编译:

Function 'getaddrinfo' could not be resolved    test.cpp        /vmulti line 48  Semantic Error
Function 'getaddrinfo' could not be resolved    test.cpp        /vmulti line 50 Semantic Error
too few arguments to function 'int getaddrinfo(const char*, const char*, const addrinfo*, addrinfo**)'  test.cpp        /vmulti line 48 C/C++ Problem

以下是代码:

ws2tcpip.h:

#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

test.cpp (我的程序):

#define _WIN32_WINNT 0x0501
#include <string.h>
#include <winsock2.h>
#include <iostream>
#include <stdio.h>
#include <stdint.h>
#include <ws2tcpip.h>
using namespace std;

#define MYPORT "3490"  // the port users will be connecting to
#define BACKLOG 10     // how many pending connections queue will hold

void *get_in_addr(struct sockaddr *sa)
{
    if (sa->sa_family == AF_INET) {
        return &(((struct sockaddr_in*)sa)->sin_addr);
    }

    return &(((struct sockaddr_in6*)sa)->sin6_addr);
}

int main(int argc, char *argv[])
{
        WSADATA wsaData;
        if (WSAStartup(MAKEWORD(1,1), &wsaData) != 0) {
                fprintf(stderr, "WSAStartup failed.\n");
                exit(1);
        }
    struct sockaddr_storage their_addr;
    int addr_size;
    struct addrinfo hints, *res;
    int sockfd, new_fd, len, numbytes;

    memset(&hints, 0, sizeof hints);
    hints.ai_family = AF_UNSPEC;  // use IPv4 or IPv6, whichever
    hints.ai_socktype = SOCK_STREAM;
    hints.ai_flags = AI_PASSIVE;     // fill in my IP for me

    getaddrinfo(NULL);  // Line 48

    if(getaddrinfo(NULL, MYPORT, &hints, &res) == -1); // Line 50
      cout << "Getaddrinfo error" << endl;

1 个答案:

答案 0 :(得分:2)

乳清!我迟到了两年。但我给你一个答案&amp;在同一条船上的其他人:D

这不是Eclipse中的错误,它是MinGW中的一个错误 - 就在freeaddrinfo / getaddrinfo / getnameinfo之前,mingw标题的最新版本声明:

#if (_WIN32_WINNT >= _WIN32_WINNT_WINXP)
/**
 * For WIN2K the user includes wspiapi.h for these functions.
 */

......这没有任何意义,因为mingw不包含那个标题。

要修复:我在我的应用程序&amp;中添加了函数的前向声明。按照惯例与ws2_32.lib链接。我的应用程序是一个简单的单文件应用程序 - 将它添加到您自己的标题和放大器可能更有意义。把它包括在需要的地方。

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>

#ifdef __cplusplus
extern "C" {
#endif
   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 );
#ifdef __cplusplus
}
#endif

int main() { /* ... */ }