2、connect()连接
3、如果出错,用select()系统调用对其进行超时检测,看在给定的时间内socket是否变得可写
[cpp] view plain copy print?
int fd = socket(PF_INET,SOCK_STREAM,0);
...
int flags = fcntl(fd,F_GETFL,0);
fcntl(fd,F_SETFL,flags | O_NONBLOCK);
int n = connect(fd,(struct sockaddr*)&addr,sizeof addr);
if(n < 0)
{ // EINPROGRESS表示connect正在尝试连接
if(errno != EINPROGRESS && errno != EWOULDBLOCK)
return 1;
struct timeval tv;
tv.tv_sec = 10;
tv.tv_usec = 0;
fd_set wset;
FD_ZERO(&wset);
FD_SET(fd,&wset);
n = select(fd+1,NULL,&wset,NULL,&tv);
if(n < 0)
{ // select出错
perror("select()");
close(fd);
return 1;
}
else if (0 == n)
{ // 超时
cerr<< "Timeout." << endl;
close(fd);
return 1;
}
else
{ // 连接成功
cerr << "Connectd." <
}
fcntl(fd,F_SETFL,flags & ~O_NONBLOCK); // 设为阻塞模式