当前位置:
首页 资源下载
搜索资源 - concurrent socket client
搜索资源列表
-
0下载:
此代码作为Server,使用TCP Socket编程技术,利用多线程并发,并且使用了线程池技术,修改宏定义可以实现任意路client并发连接到此服务器,This code as a Server, using TCP Socket programming using concurrent multi-threaded, and uses the thread pool technology, to amend the definition of macros can be complicated
-
-
1下载:
基于嵌入式实时操作系统vxworks的socket网络编程,初学必备!包含udp、tcp的客户机/服务器的代码实现,tcp服务器支持多任务并发处理连接请求;开发工具为tornado for pentium 在vxworks虚拟机上调试通过,含搭建虚拟机的详细步骤。-Vxworks embedded real-time operating system based on the socket network programming, beginners must have! Contains ud
-
-
0下载:
CE版本的XTALK程序。它包括服务器和客户端两部分。其中对套接字I/O的并发采用线程+select机制,对于屏幕刷新则采用消息机制。主要功能是一个简单的群聊工具,一个客服发言,服务器对其广播。同时,他可以跟桌面Windows版本的程序通信。-CE versions of XTALK procedures. It includes server and client in two parts. Which socket I/O concurrent threads+ select the mec
-
-
2下载:
用socket写的服务器端客户端程序,服务器端多线程,可以并发处理客户端的请求-Used to write server-side socket client program, server-side multi-threaded and can handle concurrent client requests
-
-
0下载:
多客户并发服务程序的实现。
熟悉socket的操作,掌握异步socket的使用方法,理解多线程的概念,初步掌握线程的编程方法。
程序必须在服务器端实现接受多个客户的服务请求并为它们服务,具体的,服务器端进行监听,接到客户的请求后服务器与客户建立连接,接受客户传送来的数据并将其发挥给客户端,服务器端和客户端的数据通信采用的是异步方式。
-Multi-client concurrent service program implementation. Are familiar with t
-
-
0下载:
(1)设计UDP服务器程序和客户机程序,利用一般UDP套接字实现基本的UDP通信功能。
(2)根据并发服务器模型原理设计UDP并发服务器程序。-(1) design UDP client server program and program, use commonly UDP socket communication function realization of basic UDP).
(2) according to the principle of concurrent serve
-
-
0下载:
常规的java socket客户端程序,输入字符并发往指定ip端口。在这基础上可创建数据采集程序-Regular java socket client program, enter the characters to specify concurrent ip port. On this basis, you can create data collection procedures
-
-
0下载:
it is a tcp client server program in c. it uses socket programming. the server is a concurrent server.
-
-
0下载:
基于socket的即时通讯软件的设计,本设计通过研究讨论,设计基于socket编程的网络聊天系统,服务器端采用多线程并发服务方式,多客户端能同时连接服务器,并且客户端之间能进行通信。程序通过了验证与测试,证明了系统的可用性、易用性、完善性。-Socket-based design of instant messaging software,This design study and discuss the design of network-based chat system socket pr
-
-
0下载:
基于J ava Socket 多客户端并发通信聊天程序的设计与实现-J ava Socket-based multi-client chat program concurrent communication design and implementation
-
-
0下载:
TCP/IP SOCKET 多线程 简单实现并发接收客户端数据-TCP/IP SOCKET simple implementation of concurrent multi-threaded to receive the client data
-
-
0下载:
集客户端、服务器端于一体的IOCP的网络文件传送组件,支持异步socket,导步读写文件,多线程并发,多文件夹、文件并行传送,可以使单台客户端传送性能达到最佳,服务器端性能达到最大,可以支持至少两千以上的并发。-Network file transfer component of the set of the client, the server-side in one of the IOCP supports asynchronous socket, step-by-step guide to
-
-
0下载:
基于Windows的网络通信验证程序。第一次运行该程序后,在”socket”菜单中选择”服务器”选项既可启动服务器。接下来,再次运行该程序后在”socket”菜单中选择”客户端”选项既可启动客户端并建立网络连接,允许多客户并发处理。
客户端可向服务器端发送数据并在本地显示,服务器显示接收到的数据并倒序返回。
服务器可向所有连接的客户广播消息。
-The authentication process of a Windows-based network communication. T
-
-
3下载:
C#高性能大容量SOCKET并发完成端口例子(有C#客户端)-C# high-performance concurrent completion port capacity SOCKET examples (with C# client)
-
-
0下载:
实验3 TCP和UDP套接字综合应用
要求:(1)TCP、UDP
(2)C/S
(3)多线程编程
摘要:设计简单的客户/服务器,服务器实现并发同时响应客户的UDP通信要求,也能响应客户端发过来的TCP通信要求。
TCP客户:
客户创建流套接字,向服务器发起TCP连接。
连接创建成功后,通过套接字向服务器持续发送或是接收数据。
(3)输入或是收到命令”end”,结束收发数据,并断开与服务器的连接。
UDP客户:
(1)客户创建数据报套接字,通过该套
-
-
0下载:
工程演示了socket的基本函数使用,其实不管有多复杂的网络程序,都使用的这些基本函数。功能是只有处理完一个客户端请求才会去处理下一个客户端的请求,这样的服务器处理能力是很弱的,现实中的服务器都需要有并发处理能力!为了需要并发处理,服务器需要fork()一个新的进程或者线程去处理请求等-Engineering demonstrates the basic functions of the socket, in fact, no matter how complex the network pro
-
-
0下载:
这是一个关于各种IO模型的socket server实现与测试。
这里采用多种模型实现了一个TCP ECHO服务器,将client发送的内容echo回去。
client每秒会发送一次请求,server保持并发连接并进行相应。
现已实现的模型:
base: 最原始的echo服务器
thread: 多线程模型
select: select模型
poll: poll模型
epoll: epoll模型
参数
修改src/clients.sh 可以生成指定数量的client
修改
-
-
0下载:
模拟TCP客户端高并发连接,对tcp服务端进行压力测试。(Simulated TCP client high concurrent connection, the TCP server stress test.)
-
-
0下载:
一款高性能并发tcp服务器,内部带有心跳,分包,粘包,功能,并包含TCP,UDP客户单小例子(A high performance concurrent TCP server with internal heartbeat, sub packet, sticky package, function, and contains TCP, UDP client single small example)
-
-
0下载:
从客户端到服务器进行文件传输,其中服务器实现并发处理的功能,可以解决重名的情况(File transfer to the server from the client, the server can realize the concurrent processing function, and solve the same name's situation)
-