getaddrinfo 错误:不支持 ai_socktype

发布于 2024-11-06 04:31:29 字数 519 浏览 2 评论 0原文

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; 它会通过,但我想知道为什么会发生?

谢谢你的时间

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;
}

this gives the error: "ai_socktype not supported"
if i comment out the hint.ai_protocol = AI_PASSIVE; it will get through, but i am wondering why it happens?

thanks for your time

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灯角 2024-11-13 04:31:29

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

memset(&hints, 0, sizeof hints);

日产的代码当然已经有了

It's worth just adding here, as this is the top result when searching for "ai_socktype not supported"
an alternative reason for it could be that hints is not zeroed on the stack;
for that you need

memset(&hints, 0, sizeof hints);

Nissan's code of course did have that already

深爱不及久伴 2024-11-13 04:31:29

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

hint.ai_flags = AI_PASSIVE;

看看 addrinfo 结构

That's because AI_PASSIVE is referred to ai_flags field, (not ai_protocol).
Try :

hint.ai_flags = AI_PASSIVE;

And have a look at addrinfo structure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文