搜索资源列表
345645322
- 聊天基于TCP/IP的网络通信技术实现了面向连接的用户与服务器间点对点异步通信,本代码在该基础上应用了多线程以及共享数据结构技术,使网络服务器具有了多用户间数据转发的功能,进而解决了局域网多用户间的通信问题。-chatting on TCP / IP network communication technology to achieve a connection-oriented users and server, peer-to-peer - further communication, th
解决生产者-消费者问题
- public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter < 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw
experimental
- 设计UDP服务器程序,在完成绑定、监听等操作后,利用线程函数接收客户端的连接请求,并为利用发送线程进行信息发送。利用局域网测试程序,可以进行网络聊天。-Design UDP server program, in complete binding, monitoring, etc, using thread function after receiving the client connection requests, and using information for sending messa
ui
- 启动和关闭服务器的界面程序,用于开启和关闭线程的操作-Start and shut down the server interface program for opening and closing operation of the thread
VCPP_Server_Client
- VC++编写一款可边下载、边聊天的多线程下载服务端、客户端程序,都可顺利编译,可指定IP进行连接,连接成功后,可进行对话,单对单的聊天,比较简单。服务端和客户端基于多线程,支持多任务。-VC++ prepared a chat while downloading, multi-threaded download server, the client program, can be successfully compiled, you can specify IP connection, afte
funChat
- 一个基于C#.NET的WPF程式 主要是通过UDP进行端口通讯,仅支持服务端与多客户端的聊天. 注意事项: -仅支持服务端与各个客户端的聊天 -服务端必须暴露在公网中 -客户端支持开机系统常驻 -带一些简单的客户端控制命令 -服务端有线程无法结束的BUG(推测是与客户端UDP连接没有彻底断开)-Based on C# .NET' s WPF program mainly through UDP port communication, only supports
tge-Shxjs
- 展示了用WinInet FTP函数在第二个线程执行期间从匿名FTP服务器上下载文件的方法(Shows the using WinInet FTP function during the second thread execution from the anonymous method to download files on the FTP server)
QTcpServiceTest
- qt编写tcp服务器程序,用到线程池。在vs2010/qtcreator4.8下运行正常.(Qt writes the TCP server program and USES the thread pool. Normal operation under vs2010/qtcreator4.8.)