gpt4 book ai didi

c++ - 当没有互联网连接时,socket() 和 sendto() 不返回错误代码

转载 作者:搜寻专家 更新时间:2023-10-31 02:15:18 25 4
gpt4 key购买 nike

当我没有互联网连接时,为什么 socket() 不返回 INVALID_SOCKET?我以为它会失败然后我可以退出我的功能。我的函数的错误检查一直持续到 recvfrom(),然后在我没有互联网连接时挂起。我以为 socket()sendto() 会在我没有互联网连接时返回错误代码,但事实并非如此。我试图依靠他们的失败作为用户没有互联网连接并退出我的功能的标志,但那只是因为一些奇怪的原因而不起作用。

void myFunc()
{
WSADATA wsaData;
WSAStartup(MAKEWORD(2, 2), &wsaData);

struct sockaddr_in server_addr;
memset(&server_addr, 0, sizeof(server_addr));
server_addr.sin_family = AF_INET;
server_addr.sin_addr.s_addr = inet_addr("myipaddress");
server_addr.sin_port = htons(123);

// Doesn't fail when there's no internet connection
protoent *proto = getprotobyname("udp");
int s = socket(PF_INET, SOCK_DGRAM, proto->p_proto);
if (s == INVALID_SOCKET) {
goto Cleanup;
}

// Doesn't fail when there's no internet connection
char msg[48] = { 0x08, 0, 0, 0, 0, 0, 0, 0, 0 };
int iResult = sendto(s, msg, sizeof(msg), 0, (struct sockaddr *) &server_addr, sizeof(server_addr));
if (iResult == SOCKET_ERROR) {
goto Cleanup;
}

// Hangs when there's no internet connection
memset(msg, 0, sizeof(msg));
struct sockaddr saddr;
socklen_t saddr_l = sizeof(saddr);
iResult = recvfrom(s, msg, 48, 0, &saddr, &saddr_l);
if (iResult == SOCKET_ERROR) {
goto Cleanup;
}

Cleanup:
closesocket(s);
WSACleanup();
}

最佳答案

因为不需要套接字连接到互联网。许多应用程序使用套接字在单台机器上进行进程间通信。当没有互联网连接时,此类应用程序仍然可以正常运行。

sendto() 可以返回一个错误代码;它可以(在某些情况下,如有关网络连接状态的桌面通知所示)知道数据包永远无法传递。但是,UDP 通信和 sendto() 不保证任何交付,显然您正在使用的实现不考虑缺少值得错误代码的连接。可以说这是实现质量问题。

recvfrom() 只是等待您为消息指定的时间(可能无限期地),但永远不会收到消息。同样,这在规范范围内,并且无论是否标记了这种特定情况,都可以将其视为实现质量问题。

关于c++ - 当没有互联网连接时,socket() 和 sendto() 不返回错误代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38681543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com