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;
它会通过,但我想知道它为什么会发生?
感谢您的时间
答案 0 :(得分:5)
值得在这里添加,因为这是搜索“ai_socktype not supported”时的最佳结果 另一个原因可能是提示没有归零; 为此你需要
memset(&hints, 0, sizeof hints);
日产的代码当然已经有了
答案 1 :(得分:2)