博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于select的socket编程
阅读量:5024 次
发布时间:2019-06-12

本文共 1223 字,大约阅读时间需要 4 分钟。

1.select函数

The select function returns the total number of socket handles that are ready and contained in the structures, zero if the time limit expired, or SOCKET_ERROR if an error occurred. If the return value is SOCKET_ERROR, can be used to retrieve a specific error code.

In summary, a socket will be identified in a particular set when select returns if:

readfds:

  • If has been called and a connection is pending, will succeed.
  • Data is available for reading (includes OOB data if SO_OOBINLINE is enabled).
  • Connection has been closed/reset/terminated.

writefds:

  • If processing a call (nonblocking), connection has succeeded.
  • Data can be sent.

exceptfds:

  • If processing a connect call (nonblocking), connection attempt failed.
  • OOB data is available for reading (only if SO_OOBINLINE is disabled).
int select(  _In_    int                  nfds,  _Inout_ fd_set               *readfds,//检测可读性的  _Inout_ fd_set               *writefds,//检测可写性的  _Inout_ fd_set               *exceptfds,//检测存在错误的  _In_    const struct timeval *timeout   //select函数等待的最长时间,阻塞模式时设为0);
typedef struct fd_set {  u_int fd_count;  //集合中的数量  SOCKET fd_array[FD_SETSIZE];} fd_set; ....................

转载于:https://www.cnblogs.com/freesec/p/6208425.html

你可能感兴趣的文章
java的面向对象 (2013-09-30-163写的日志迁移
查看>>
HDU 2191 【多重背包】
查看>>
51nod 1433 0和5【数论/九余定理】
查看>>
【AHOI2013复仇】从一道题来看DFS及其优化的一般步骤和数组分层问题【转】
查看>>
less 分页显示文件内容
查看>>
如何对数据按某列进行分层处理
查看>>
[Qt] this application failed to start because it could not find or load the Qt platform plugin
查看>>
Git Submodule管理项目子模块
查看>>
学会和同事相处的30原则
查看>>
NOJ——1568走走走走走啊走(超级入门DP)
查看>>
文件操作
查看>>
Python:GUI之tkinter学习笔记3事件绑定(转载自https://www.cnblogs.com/progor/p/8505599.html)...
查看>>
jquery基本选择器
查看>>
hdu 1010 dfs搜索
查看>>
搭建wamp环境,数据库基础知识
查看>>
android中DatePicker和TimePicker的使用
查看>>
SpringMVC源码剖析(四)- DispatcherServlet请求转发的实现
查看>>
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>