gpt4 book ai didi

c++ - 连接被拒绝后 connect() 长时间挂起

转载 作者:太空宇宙 更新时间:2023-11-04 05:14:37 25 4
gpt4 key购买 nike

我有一个小代理,应该不时连接到服务器第一阶段它打开一个socket :

const char* hostname // e.g. "127.0.0.1"   
hostaddr = inet_addr(hostname);

/* Ultra basic "connect to port 22 on localhost"
* Your code is responsible for creating the socket establishing the
* connection
*/
sock = socket(AF_INET, SOCK_STREAM, 0);

sin.sin_family = AF_INET;
sin.sin_port = htons(22);
sin.sin_addr.s_addr = hostaddr;
if (connect(sock, (struct sockaddr*)(&sin),
sizeof(struct sockaddr_in)) != 0) {
fprintf(stderr, "failed to connect!\n");
return -1;
}

ip-address无效,连接似乎挂起很长时间失败之前

查看man page提供有关该主题的一些数据,但不提供如何超越它

我的问题是为什么以及如何为其添加超时(或任何其他解决方案)

最佳答案

引自其中一个答案here

Put the socket into non-blocking mode until you've connected, and then put it back into blocking mode once the connection's established.

关于c++ - 连接被拒绝后 connect() 长时间挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50999952/

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