当前位置: 首页 > article >正文

非阻塞connect

非阻塞connect

     connect系统调用的man手册中一段话描述了connect出错时的一种errno值:EINPROGRESS。这种错误发生在对非阻塞的socket调用connect,而连接又没有立即建立时。根据man文档的解释,在这种情况下,我们可以调用select,poll等函数来监听这个连接失败的socket上的可写事件。当select,poll等函数返回后,在利用getsockopt来读取错误码并清除该socket上的错误。如果错误码为0,表示连接成功建立,否则连接失败。
     代码为:
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <string.h>#define BUFFER_SIZE 1023int setnonblocking( int fd )
{int old_option = fcntl( fd, F_GETFL );int new_option = old_option | O_NONBLOCK;fcntl( fd, F_SETFL, new_option );return old_option;
}int unblock_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 );int fdopt = setnonblocking( sockfd );ret = connect( sockfd, ( struct sockaddr* )&address, sizeof( address ) );if ( ret == 0 ){printf( "connect with server immediately\n" );fcntl( sockfd, F_SETFL, fdopt );return sockfd;}else if ( errno != EINPROGRESS ){printf( "unblock connect not support\n" );return -1;}fd_set readfds;fd_set writefds;struct timeval timeout;FD_ZERO( &readfds );FD_SET( sockfd, &writefds );timeout.tv_sec = time;timeout.tv_usec = 0;ret = select( sockfd + 1, NULL, &writefds, NULL, &timeout );if ( ret <= 0 ){printf( "connection time out\n" );close( sockfd );return -1;}if ( ! FD_ISSET( sockfd, &writefds  ) ){printf( "no events on sockfd found\n" );close( sockfd );return -1;}int error = 0;socklen_t length = sizeof( error );if( getsockopt( sockfd, SOL_SOCKET, SO_ERROR, &error, &length ) < 0 ){printf( "get socket option failed\n" );close( sockfd );return -1;}if( error != 0 ){printf( "connection failed after select with the error: %d \n", error );close( sockfd );return -1;}printf( "connection ready after select with the socket: %d \n", sockfd );fcntl( sockfd, F_SETFL, fdopt );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 = unblock_connect( ip, port, 10 );if ( sockfd < 0 ){return 1;}shutdown( sockfd, SHUT_WR );sleep( 200 );printf( "send data out\n" );send( sockfd, "abc", 3, 0 );//sleep( 600 );return 0;
}



http://www.lryc.cn/news/2416421.html

相关文章:

  • EnableWindow()函数的应用
  • (28)CreateFont函数
  • C# CultureInfo 类之各国语言所对应的的区域性名称
  • JDBC元数据操作(一)-- DatabaseMetaData接口详解
  • 小菜和大鸟的编程故事之三:代码规范和重构意识
  • 数据库系统原理与应用教程(029)—— MySQL 的数据完整性(二):定义主键(primary key)
  • VMware虚拟机安装Ubuntu14.04.5-server详细图文教程
  • JS window对象 返回前一个浏览的页面 back()方法,加载 history 列表中的前一个 URL。 语法: window.history.back();
  • HDTUNE工具下载
  • python 爬取google总结
  • [PaddleGAN]人脸表情迁移-视频换脸
  • Android逆向之旅---破解一款永久免费网络访问工具
  • 关于同步电机的Ldq测量
  • 域名系统(Domain Name System,DNS)
  • 安奈特智能技术-半导体制造行业RFID解决方案
  • folsom版本horizon架构剖析
  • 分享35款最新出炉的免费个人博客模板
  • java中的强引用(Strong reference),软引用(SoftReference),弱引用(WeakReference),虚引用(PhantomReference)
  • session.setAttribute和request.setAttribute的区别
  • 白盒模型和黑盒模型
  • RT-Thread : IEEE1588/PTP 协议的实现
  • 二、Linux开发中常用到的命令
  • C#学习教程14——进程与线程
  • centos7无界面系统物理机安装教程超详细完整教程图解
  • 100款绿色重量级软件
  • 正则表达式匹配和替换
  • Turbo C安装与配置
  • STIL和WGL的例子文件
  • 清华紫光输入法linux,清华紫光拼音输入法
  • Pycharm、Vscode设置美女背景【内附20张高清图片】