Welcome![Sign In][Sign Up]
Location:
Search - socket iocp

Search list

[Internet-Network精通windows socket网络开发

Description: 这是介绍了好几种常见的网络通信架构,有异步事件模式,iocp模式,重叠端口模式等。程序很好用,实例也很好。
Platform: | Size: 889203 | Author: liyani_1980 | Hits:

[WinSock-NDISwinsocket_IOCP

Description: 一个非常好的通过IOCP实现多客户端跟服务器端快速通讯的原代码,包括客户端和服务器端的实现通讯的例子源码,对大家或许很有帮助
Platform: | Size: 50294 | Author: fugaoting | Hits:

[Windows DevelopIocp socket Multithread

Description: Iocp Multithread socket
Platform: | Size: 209029 | Author: ntaryl@gmail.comntaryl | Hits:

[SourceCode完成端口IOCP源代码

Description: 老外写的IOCP完成端口源程代码,适合初学者。
Platform: | Size: 158302 | Author: netfleet | Hits:

[Process-ThreadWinsockIOCP_demo

Description: 用于大量socket连接时使用IOCP捕获连接关闭事件以便释放资源的程序。可以解决winsock的AsyncSelect对句柄个数的限制问题- Uses in when the massive socket connection uses IOCP to catch the connection closure event in order to release resources procedure. May solve the winsock AsyncSelect 瀵瑰彞 handle integer limit problem
Platform: | Size: 50176 | Author: 站长 | Hits:

[Internet-NetworkIOCP完成端口模型示例代码

Description: 采用完成端口进行sockets操作。 由浅入深的解释、详细的分析、以及编码步骤,另外附上带有详细注释的源码(为了照顾大多数朋友,我提供的都是MFC的源码)。-completed using sockets for port operations. Elementary explanation, detailed analysis, and coding steps, the other with detailed explanatory note attached to the source code (in order to take care of most friends, and I are all for the MFC source).
Platform: | Size: 20480 | Author: 石磊 | Hits:

[Windows Developsf_200562516252

Description: 一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below: struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void* p, char* buf, int len) void OnAccept(SOCKET socket) void OnClose(void* p) } void myIocp::OnAccept(SOCKET socket) { TSession*s = new TSession s->socket = socket //here you can do something about connection session,such as find a unique id. SetIoCompletionPort(socket, s) // make connection socket associate with a custom structure } void myIocp::OnRead(void* p, char* buf, int len) { TSession*s = (TSession*)p send(s->socket, buf, len, 0) // return received message to client void myIocp::OnClose(void* p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) //start listenning net port,wait for client connect.
Platform: | Size: 2048 | Author: boxu | Hits:

[Internet-NetworkIOCPNet_Demo

Description: SOCKET基类,数据包处理,自动解饱.这是个VC开发的打包与解包的核心代码,以飨大家-SOCKET base class, data packet processing, automatic solution bun. This is a development of the VC Packing and Unpacking the core code for our people
Platform: | Size: 33792 | Author: sonka | Hits:

[Internet-NetworkIOCP

Description: IOCP 的delphi 实现, 本人测试OK的.-IOCP of delphi realize, I test the OK.
Platform: | Size: 874496 | Author: zzzzzz | Hits:

[Internet-Networkecho_server

Description: 这是一个我经过多次寻找验证,保证不丢数据的socket IOCP的程序。用法很简单。-This is a many times I have been looking for validation to ensure data is not lost socket IOCP procedures. Usage is very simple.
Platform: | Size: 117760 | Author: 袁志 | Hits:

[Internet-NetworkwindowsSock-IOCP

Description: windows网络模型之IOCP 实现的考试系统 可以连接大量套接字 需要配置数据源,用的access数据库-windows network model of the examination system to achieve IOCP can connect a large number of socket need to configure the data source, access the database used
Platform: | Size: 94208 | Author: wake | Hits:

[Internet-NetworkIOCP-SRC

Description: IOCP实现,高并发的Socket编程,可用于网络通讯程序的后台实现-IOCP achieve high concurrency Socket programming, network communication can be used for the background process to achieve
Platform: | Size: 158720 | Author: yy | Hits:

[Internet-NetworkIOCP

Description: 关于IOCP 关于Socket与完成端口的C++源代码。-About IOCP-(C++)Soure Code,Contains four examples of different degrees of difficulty. About Socket and finish port of C++ source code.
Platform: | Size: 4072448 | Author: gorde | Hits:

[Internet-NetworkIOCPMFC

Description: WINDOWS SOCKET IOCP模型编程例子-WINDOWS SOCKET IOCP
Platform: | Size: 176128 | Author: chen | Hits:

[Internet-NetworkIOCP

Description: Socket通讯中服务端的性能最高的实现方法:完成端口,-Socket client communication services to achieve the highest performance method: the completion of the port,
Platform: | Size: 7962624 | Author: 吕高建 | Hits:

[Internet-NetworkIOCP

Description: 封装了Socket(完成端口框架模型)IOCP相关操作的类,可方便继承以便开发自己的服务及客户端-this is a Pragram about Socket(IOCP),you can use it or make it in your own Programs
Platform: | Size: 149504 | Author: 刘邦 | Hits:

[CSharpIOCP.in.Csharp

Description: Windows IOCP Socket在C#封装,并有Socket池的实现-Windows IOCP Socket in C# package, and have achieved Socket Pool
Platform: | Size: 32768 | Author: 执迷不悔 | Hits:

[Internet-NetworkIOCP

Description: ICOP服务器的开发,并提供源代码,动态库,调用DEMO(包含VC,C#,Delphi7)。 阅读源代码最好对C++,TCP/IP,socket编程,多线程和MFC有一定了解。 程序编译环境:Visual C++ 6.0。运行在Windows NT/2000或以上版本系统。-ICOP server development, and provide the source code, dynamic library, called DEMO (VC, C#, Delphi7). Read the source code is best for C++, TCP/IP, socket programming, multithreading, and MFC have a certain understanding. Compiled environment: Visual C++ 6.0. Running on Windows NT/2000 or later systems.
Platform: | Size: 55296 | Author: greg | Hits:

[TCP/IP stackIOCP(Socket)

Description: Windows系统下的socket模型有多种,其中完成例程的效率也是相当高的,IOCP主要针对数据吞吐量和连接并发量而设计,本示例提供完整的IOCP源码示例,希望对大家对IOCP的深入理解有帮助-IOCP for socket
Platform: | Size: 1106944 | Author: 李卫军 | Hits:

[Delphi VCLioctlsocket

Description: 一个delphi中用多种模式socket的示例,包括: 1、阻塞单线程 2、阻塞多线程 3、非阻塞模式 4、Select模式 5、WSAAsynSelect模式 6、IOCP模式 7、UPD通讯 非常经典!(An example of using multiple patterns of Delphi in socket, including: 1, blocking single thread 2, blocking multithreading 3, non blocking mode 4, Select mode 5, WSAAsynSelect mode 6, IOCP mode 7, UPD communication is very classic!)
Platform: | Size: 287744 | Author: hsanming | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net