2
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 not supported”如果我注释掉hint.ai_protocol = AI_PASSIVE;它将通过,但我想知道为什么会这样?

谢谢你的时间

4

2 回答 2

8

值得在这里添加,因为这是搜索“ai_socktype not supported”时的最高结果,另一个原因可能是提示未在堆栈上归零;为此你需要

memset(&hints, 0, sizeof hints);

日产的代码当然已经有了

于 2015-02-04T13:44:33.507 回答
2

那是因为 AI_PASSIVE 是指 ai_flags 字段,(不是 ai_protocol)。尝试 :

hint.ai_flags = AI_PASSIVE;

并看看addrinfo 结构

于 2011-05-11T03:18:46.577 回答