-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode11_1.cpp
More file actions
66 lines (63 loc) · 1.61 KB
/
Copy pathcode11_1.cpp
File metadata and controls
66 lines (63 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/epoll.h>
#include <pthread.h>
/*超时连接函数*/
int timeout_connect(const char * ip,int port,int time)
{
int ret = 0;
struct sockaddr_in address;
bzero(&address,sizeof(address));
address.sin_family = AF_INET;
inet_pton(AF_INET,ip,&address.sin_addr);
address.sin_port = htons(port);
int sockfd = socket(PF_INET,SOCK_STREAM,0);
assert(sockfd != -1);
/*通过选项SO_RCVTIMEO和SO_SNDTIMEO所设置的超时时间的类型是
* timeval,这和selecte系统所调用的超时参数类型相同*/
struct timeval timeout;
timeout.tv_sec = time;
timeout.tv_usec = 0;
socklen_t len = sizeof(timeout);
ret = setsockopt(sockfd,SOL_SOCKET,SO_SNDTIMEO,&timeout,len);
assert(ret != -1);
ret = connect(sockfd,(struct sockaddr *)&address,sizeof(address));
if(ret != -1)
{
/*超时对应的错误是EINPROGRESS,下面这个条件如果成立,我们就可以
* 处理定时任务了*/
if(errno == EINPROGRESS)
{
printf("connecting timeout,process timeout logic\n");
return -1;
}
printf("error occur when connecting to server\n");
return -1;
}
return sockfd;
}
int main(int argc,char *argv[])
{
if(argc <= 2)
{
printf("usage: %s ip_address port_number\n",basename(argv[0]));
return 1;
}
const char *ip = argv[1];
int port = atoi(argv[2]);
int sockfd = timeout_connect(ip,port,10);
if(sockfd <= 0)
return 1;
close(sockfd);
return 0;
}