socket connect超时设置
程序员文章站
2022-04-24 13:33:44
...
场景:客户端调用接口时,默认调用的超时时间会很长,可以通过设置发送的超时时间来控制。
int create_server_socket(const char *node_ip, int port)
{
int sockfd;
int sendbytes;
char buf[MIDLEN] = "";
struct hostent* host;
struct sockaddr_in server_addr;
if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
{
Log(LOGFILE, "%d [%s] create socket error.\n", __LINE__, __FUNCTION__);
return RET_ERROR;
}
bzero(&server_addr, sizeof(server_addr));
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(port);
server_addr.sin_addr.s_addr = inet_addr(node_ip);
/*TCP发送超时设置*/
struct timeval timeout;
timeout.tv_sec = 1; // 设定1秒超时
timeout.tv_usec = 0;
setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout));
if (connect(sockfd, (struct sockaddr*) & server_addr, sizeof(server_addr)) == -1)
{
Log(LOGFILE, "%d [%s] connect error.\n", __LINE__, __FUNCTION__);
return RET_ERROR;
}
return sockfd;
}
/*TCP超时设置*/
struct timeval timeout;
timeout.tv_sec = 1; // 设定1秒超时
timeout.tv_usec = 0;
setsockopt(sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout));
主要是函数setsockopt的使用,注意其中的参数。
#include <sys/types.h>
#include <sys/socket.h>
int setsockopt(int sockfd, int level, int optname,const void *optval, socklen_t optlen);
sockfd:标识一个套接口的描述字。
level:选项定义的层次;支持SOL_SOCKET、IPPROTO_TCP、IPPROTO_IP和IPPROTO_IPV6。
optname:需设置的选项。
optlen:optval缓冲区长度。
optname设置不同的值实现不同的效果。
参考:https://baike.baidu.com/item/setsockopt/10069288?fr=aladdin
上一篇: java—网络通信socket的例子
推荐阅读
-
Java设置session超时的几种方式总结
-
Linux登录MySQL时出现 Can't connect to local MySQL server through socket '/tmp/mysql.sock'解决方法
-
Python中为feedparser设置超时时间避免堵塞
-
为python设置socket代理的方法
-
思科6509交换机设置idle time超时自动断开
-
PHP file_get_contents设置超时处理方法
-
ajax 怎么设置超时(一个action执行了2遍)
-
C#访问SqlServer设置链接超时的方法
-
BootstrapTable请求数据时设置超时(timeout)的方法
-
php-fpm超时时间设置request_terminate_timeout资源问题分析