搜索资源列表
Chat_Socket
- 实现“一对多的自由”聊天程序: (1)服务器端用户可以和多个客户聊天; (2)服务器端通过多线程与与每个客户端用户连接; (3)服务器端线程ID标识客户端用户;其中一方通过控制台输入消息,依次轮流向另一方发送数据。-Achieve " the freedom of one to many" chat program: (1) server-side user can chat with multiple customers (2) through a multi-
NWebCrawler
- 一款用 C# 编写的网络爬虫。用户可以通过设置线程数、线程等待时间,连接超时时间,可爬取文件类型和优先级、下载目录等参数,获得网络上URL,下载得到的数据存储在数据库中。-Using a web crawler written in C#. Users can set the number of threads, thread waiting time, connection time, crawling file types can be Type and priority, the do
iocpserver
- 基于IOCP完成端口的可伸缩性服务器程序,利用线程池、连接池、内存池的技术管理和实现服务器,可在各种服务器开发项目中应用。-IOCP completion port based on the scalability of the server program, using the thread pool, connection pool, the memory pool of technical management and implementation of the server, the s
windows_server
- 一个基于IOCP的高效率的网络引擎 使用IOCP搭建的网络引擎,支持内存池,线程池,数据库连接池,实时加密等等。简单好用!开源,带demo例子-IOCP-based high efficiency of a network engine, network engine built using the IOCP to support the memory pool, thread pools, database connection pool, real-time encryption an
SimuTcpClient
- 模拟tcp协议的三次握手 mfc 使用winpcap开发; 在多线程同步方面有些小问题; windows xp sp2以上的系统不能发送原始的tcp数据包,并且在收到tcp的syn包后,会自动回复一个rst包,故不能建立连接,所以使用winpcap开发,并且还写了个简易的防火墙,过滤掉了系统自己发出的rst包。-Simulated three-way handshake protocol tcp mfc using winpcap development in a multi-t
TCPServer
- 这个控制台应用程序是一个简单的接收客户端连接的TCP服务器 一旦一个客户端连接建立了,一个线程产生来读取客户端的数据并反馈回去-The console application is a simple TCP connection to receive the client server when a client connection is established, and a client thread is created to read back the data and feed
kiate-1.6
- 一个代理服务器,能代理多种协议,包括:http,https,socks,ftp,pop3,smtp,telnet,dns。能运行在linux,freebsd,...及其它类 unix,还有windows(最新版本要求nt 4.0以上)操作系统上 一个多线程的程序(采用线程池的方式),所以短时间内大量的连接请求,kingate还能保持很高的性能。 还支持tcp端口映射,可以实现别人访问你的内网主机。 有强大的规则控制,包括源IP地址,目的IP地址,目的端口,及采用的代理协议。 ki
MolNet
- 使用IOCP搭建的网络引擎,支持内存池,线程池,数据库连接池,实时加密等等。简单好用!-Use IOCP to build the network engine, support for memory pool, the thread pool, database connection pool, real-time encryption and so on. Easy to use!
lan_multiuser_com
- 基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。 使用时先建立ODBC,Server与ChatServer先运行,然后运行Client- Has realized based on the TCP/IP network communication face between the connection user and the server
source_code
- 定义并实例化一个Client线程类,一个就对应一个客户连接,实例化一个ChatServer类-And examples of the definition of a Client-thread categories, corresponding to a client on a connection, examples of a category ChatServer
ch1
- 定义并实例化一个Client线程类,一个就对应一个客户连接,ChatServer类的构造器用来初始化一些UI信息-Definition and examples of a type of Client thread that a connection on the corresponding client, ChatServer class constructor to initialize some UI information
httppic
- 1.该程序使用IdHTTP控件实现多线程下载。 2.使用了sui皮肤控件,本人的修改版,请覆盖原版重新编译。 3。一个最大的问题:当两个线程或两个以上的线程同时 对同一网站的图片下载,由于网站的限制同时连接数,导致 线程停止。如果有哪位高手能解决这个问题,请mail我 使用方法: 先使用快车类的软件将大量包含图片连接地址的网页源文件下载 到本地,再利用本软件将这批文件打开并分析地址。 就可以得到大批图片地址列表,既可以利用快车成批下载, 也可以用本程序成
QGServerLib_release.tar
- QGServerLib是一个C++实现的简单易用的Tcp服务器框架库,旨在简化服务器的构建过程。 具有如下特点: 1, 以模块化的处理池为基本构建元素,能够方便的实现安全稳定的服务架构。 2,事件触发,多线程事件监听,任务化读写访问,解决单线程监听及数据读写带来的性能瓶颈,连接不受线程数限制。 3,写队列,并行读写逻辑,支持服务器数据推送(Push)。 4,数据传送协议,避免数据传送错误,封装数据流。 5,类远过程调用。 6,
tcpserver
- 这是Windows下的socket套接字编程的服务器端程序,每来一个套接字连接就开启一个线程-This is under Windows Sockets programming socket server-side procedures, each to open a socket connection on a thread
CIOCPModel
- 利用完成端口模型开发计算机文化基础课考试系统。该软件由服务器和客户端两部分组成,服务器端采用多线程设计,主线程启动后,创建一个接受客户端请求线程和CPU数量2倍的服务线程,采用套接字的完成端口模型对服务器的I/O操作进行管理,利用套接字WSAEventSelect模型实现对接受客户端请求进行管理。客户端包括连接服务器并接受试卷,接着初始化试卷,答卷 ,交卷部分。-Completion port model development using a computer basic courses of
CSHARPSOCKET
- C#实现多线程网络通讯 整个系统由三个核心线程组成,并由.NET线程池统一管理: 侦听客户端连接请求线程:ListenClientRequest(),循环侦听客户端连接请求。如果有,检测该客户端IP,看是否是同一观测设备,然后建立一个客户端TSession对象,并通过Socket异步调用方法BeginReceive()接收数据包、EndReceive()处理数据包 数据包处理线程:HandleDatagrams(),循环检测数据包队列_datagramQueue,完成数据包解析、判
TcpServer
- 一、 使用G-TcpClient模块 二、 可以设定间隔时间发起大规模长、短连接 三、 可以发起密集数据包,包括即时和定时发送 四、 数据发送工作由一个独立线程担当,连接发起工作可设置多个独立的线程担当。 五、 可以多种模式组合连接或发送数据。 -First, using the G-TcpClient module 2, you can set the interval time to launch a massive long and short connection 3,
InstantCommunicationSystem
- 该通信系统主要实现过程为: 开一个线程来监听客服的连接, 一旦有连接就建立一个线程, 然后把获得的客户端socket 保存到全局变量当中, 然后不断地读取客户发过来的消息, 收到以后就广播到所有的客户端socket 当中。客户端只需输入服务器的IP 地址和用户登录的昵称, 连接上就可以通信了, 客户端建立了一个线程专门来接受服务器端发送过来的消息, 然后判断是聊天信息还是用户列表信息, 然后分发。-The communication system as the main implementati
WebMonitor(one-thread)
- 通过在地址列表中输入相应的网址信息,即可对相应的网站进行实时监控,查看其是否有更新。本程序采用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
Multi-thread-communication
- 多线程通信,服务器运行后等待客户端连接,连接成功,客服端发送自己的名字及字符串信息给服务器 服务器将收到的字符串信息反向排列后发回给客户端,一个服务器可以对应多个客户端-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 infor