Welcome![Sign In][Sign Up]
Location:
Search - thread connection

Search list

[WinSock-NDISLANusersCom

Description: 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。 使用时先建立ODBC,Server与ChatServer先运行,然后运行Client- Has realized based on the TCP/IP network communication face between the connection user and the server the point-to-point asynchronous communication, this code has applied multi-thread as well as the sharing construction of data technology in this foundation, enable the network server to have the function which the multiuser between data retransmitted, then has solved the local area network multiuser between correspondence problem. When use first establishes ODBC, Server and ChatServer first moves, then moves Client
Platform: | Size: 253113 | 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: 2701 | Author: boxu | Hits:

[OtherChooseBookTool

Description: 此程序用到了,ADO连接ACCESS数据库,切分窗口,以及不同视图之间进行通信.List Control和Tree Control,用户UI线程等技术.-use of this procedure, ADO connection ACCESS database segmentation window different Views of communication between. List Control and Tree Control, users UI thread technology.
Platform: | Size: 421596 | Author: 马成启 | Hits:

[Button control345645322

Description: 聊天基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。-chatting on TCP / IP network communication technology to achieve a connection-oriented users and server, peer-to-peer - further communication, the code in the application on the basis of a multi-thread structure and the sharing of information technology, network server with a multi-user data transmitted between the functions of a LAN to try to solve the multi-user communications.
Platform: | Size: 792841 | Author: 刘开 | Hits:

[ICQ-IM-Chatlan_multiuser_com

Description: 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。 使用时先建立ODBC,Server与ChatServer先运行,然后运行Client- Has realized based on the TCP/IP network communication face between the connection user and the server the point-to-point asynchronous communication, this code has applied multi-thread as well as the sharing construction of data technology in this foundation, enable the network server to have the function which the multiuser between data retransmitted, then has solved the local area network multiuser between correspondence problem. When use first establishes ODBC, Server and ChatServer first moves, then moves Client
Platform: | Size: 257024 | Author: 许豫飞 | Hits:

[Internet-NetworkLANusersCom

Description: 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。 使用时先建立ODBC,Server与ChatServer先运行,然后运行Client- Has realized based on the TCP/IP network communication face between the connection user and the server the point-to-point asynchronous communication, this code has applied multi-thread as well as the sharing construction of data technology in this foundation, enable the network server to have the function which the multiuser between data retransmitted, then has solved the local area network multiuser between correspondence problem. When use first establishes ODBC, Server and ChatServer first moves, then moves Client
Platform: | Size: 252928 | 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:

[Communicationepoll-lib-0.11.tar

Description: linux环境下大容量TCP连接,用于网络通信.-large capacity TCP connection for network communications.
Platform: | Size: 37888 | Author: 一路发 | Hits:

[OtherChooseBookTool

Description: 此程序用到了,ADO连接ACCESS数据库,切分窗口,以及不同视图之间进行通信.List Control和Tree Control,用户UI线程等技术.-use of this procedure, ADO connection ACCESS database segmentation window different Views of communication between. List Control and Tree Control, users UI thread technology.
Platform: | Size: 556032 | Author: 马成启 | Hits:

[Symbian080108162635

Description: Symbian s60平台第二版下一个socket通讯的例子,可以测试cmnet和cmwap连接是否成功,通过http进行文件传输!-Symbian s60 platform for the second edition of a socket communication example, you can test CMNet and cmwap connection is successful, to file transfer through http!
Platform: | Size: 65536 | Author: sizhiguo | Hits:

[Windows CECNetworking

Description: wince 下网络通讯类,实现了,网络监听,网络连接,数据发送以及数据接收,远程计算机信息获得,程序采用多线程回调方式,有详细的文档说明。-wince under the category of network communications to achieve the network monitor, network connection, data sent and received data, remote access to computer information, the program multi-thread callback method of the document explains in detail.
Platform: | Size: 16384 | Author: chen | Hits:

[Windows Developkill-Thread-using-MySQL-connection

Description: Kill a thread hanged because of a running mysql database connection
Platform: | Size: 1024 | Author: ahmed | Hits:

[USB developUSB_driver_develop_on_wince

Description: 本文讲述在wince环境下开发usb驱动,特别是结合鼠标例子讲述了,设备识别与设备描述符的关系,控制与监控线程的建立,注册表信息的导入与删除....等重要信息,是读者能够触类旁通。-This article describes the development in wince environment usb drive, especially in connection with the mouse example described, device recognition and device descriptor of the relationship, control and monitor the establishment of the thread, the registry information, import and delete .... and other important information are readers can comprehend by analogy.
Platform: | Size: 11264 | Author: | Hits:

[JSP/Javasrc

Description: implements a thread that send data over a udp connection-implements a thread that send data over a udp connection...
Platform: | Size: 1024 | Author: lordsnow | Hits:

[ICQ-IM-ChatInstantCommunicationSystem

Description: 该通信系统主要实现过程为: 开一个线程来监听客服的连接, 一旦有连接就建立一个线程, 然后把获得的客户端socket 保存到全局变量当中, 然后不断地读取客户发过来的消息, 收到以后就广播到所有的客户端socket 当中。客户端只需输入服务器的IP 地址和用户登录的昵称, 连接上就可以通信了, 客户端建立了一个线程专门来接受服务器端发送过来的消息, 然后判断是聊天信息还是用户列表信息, 然后分发。-The communication system as the main implementation process: open a thread to monitor customer connections, if there is a thread connection, and then get the client socket to the global variables were saved, and then continue to read the customer sent me a message, to close to a future of broadcasting to all clients which socket. Clients only need to enter the server' s IP address and user login nickname, the connection can communicate, the client set up a dedicated thread to accept the message sent from the server, and then determine a list of chat messages, or user information, and then distribute .
Platform: | Size: 3137536 | Author: 一平 | Hits:

[JSP/Javathread

Description: 多线程的练习小例子 有助与对多线程的理解 希望对你们有所帮助-Small example of multi-threaded connection you want to help
Platform: | Size: 13312 | Author: 李晓明 | Hits:

[Internet-NetworkWebMonitor(one-thread)

Description: 通过在地址列表中输入相应的网址信息,即可对相应的网站进行实时监控,查看其是否有更新。本程序采用VS2005+SQLSERVER2005,需更改连接字符串后才可使用。-Enter in the address list by the corresponding URL information to the appropriate site for real-time monitoring to see if there are updates. This procedure uses VS2005+ SQLSERVER2005, only after the need to change the connection string to use.
Platform: | Size: 11278336 | Author: baggio | Hits:

[Linux-Unixthread

Description: All of connection management is simplified by serializing it through work queues that execute in a connection managing thread.
Platform: | Size: 2048 | Author: tansevin | Hits:

[androidUpdateInfoParser

Description: 简介高效的安卓功能开发:开启子线程连接服务器,获取更新信息-Andrews simple and efficient function development: open sub-thread connection to the server for updated information
Platform: | Size: 873472 | Author: Qi Xin | Hits:

[Internet-NetworkMulti-thread-communication

Description: 多线程通信,服务器运行后等待客户端连接,连接成功,客服端发送自己的名字及字符串信息给服务器 服务器将收到的字符串信息反向排列后发回给客户端,一个服务器可以对应多个客户端-The multi thread communication and that the server is running waiting for client connection, the connection is successful, the client sends his name and string information to the server. The server will receive string reverse arrangement sent back to the client, a server can be corresponding to a plurality of client
Platform: | Size: 2048 | Author: mike | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net