struct addrinfo *myAddrinfo, *curMyAddrinfo, hint;
memset(&hint, 0, sizeof(struct addrinfo));
hint.ai_family = AF_INET;
hint.ai_protocol = AI_PASSIVE;
hint.ai_socktype = SOCK_STREAM;

const int code = getaddrinfo(NULL, SERVER_PORT, &hint, &myAddrinfo);
if ((code) != 0) {
    printf("getaddrinfo error occours: %s ",
            gai_strerror(code));
    return 1;
}

这给出了错误:“不支持ai_socktype”
如果我注释掉hint.ai_protocol = AI_PASSIVE;,它将通过,但是我想知道为什么会发生?

谢谢你的时间

最佳答案

这是因为AI_PASSIVE被引用到ai_flags字段(而不是ai_protocol)。
尝试 :

hint.ai_flags = AI_PASSIVE;

看看addrinfo structure

10-07 16:09