搜索资源列表
echoServerVC
- 实现TCP和UDP,任意端口下的echo server-TCP and UDP, arbitrary port under the echo server
IOCPClass_BCB2006
- 一个完成端口的框架程序,演示ECHO服务器-a framework for the completion of port procedures, presentations ECHO server
Threads
- hreads:This sample demonstrates how to develop an advanced namedpipe server that is capable of servicing 5 instances. The application is an echo server where data isreceived from a client and echoed back to the client. Allthe pipe instances are servi
IocpSys.rar
- 使用IOCP编写的可伸缩性的回显服务器,适合网络编程入门者,IOCP can be prepared by the use of flexible echo server, network programming for beginners
UDP-echo-client-server
- UDP echo client server
linux_echo
- echo服务器示例程序,当收到客户端的数据,服务器把数据不经加工地发送给客户。采用TCP连接,采用端口8080进行设计,在整个过程中主要涉及socket的通信。-echo server sample application, when received by the client data, the server does not re-processing the data sent to clients. The use of TCP connection, using port 8080
echoserver
- unix program of echo server for tcpip socket programming learning
TCP_Socket
- echo server, a demo of MFC usage
TCP_echo
- simple TCP echo. run server in background, then run the client. type sumting in client, and then server will echo it.
echoserver
- java echo server program with socket
EchoServer.tar
- Implementation of echo server in C using unix TCP/IP protocol.
Echo
- 回声服务和客户端 一个简单的server和Client-Echo communication service a easy server & client
lab4
- Client程序同样分别创建一个TCP socket 和一个UDP socket,首先client使用TCP socket连接TCP Server。 连接成功后显示提示信息; 然后client端向TCP Server发送“GET UDP PORT”字符串,Server收到后向client回送自己的UDP Server 端口号(即Client端仅知道TCP Server的端口号而不知道UDP Server的端口号); client在收到UDP Server的端口号后, 为用户显示3个选
EchoServer
- 一个简单的回音器server的C++实现。对于理解SOCKET编程有很好的学习效果。-A simple echo server device of the C++ implementation. SOCKET programming for understanding a very good learning.
SverTCP
- TCP单播通信,TCP回显服务器,将收到的客户端信息发送客户端,同时能在同客户端建立连接后显示客户端地址信息和当前连接数。-TCP unicast, TCP echo server, the client will receive information on sending client, while the client can establish a connection with the client address information after the show and the
ECHO
- Windows Socket Echo 程序 包含服务器和客户端,多链接 dir get put 等功能-Windows Socket Echo program includes server and client, multi-link dir get put functions
UDP-Echo
- 使用UDP协议写的一个ECHO的客户端和服务器的程序(原创+可执行)-Using the UDP protocol to write a ECHO client and server program (original+ executable)
server
- UDP echo服务器的程序,相比tcp 要简单,传输的过程也简单。-UDP echo server program. It s easier than the tcp server,and the transmission is also easy.
Echo
- Client/Server回聲程式,Server會回傳Client所送出的資料,使用threading概念-Client/Server Echo, Server will reply the same message Client sent.
socket-server-socket-serve
- 这是一个关于各种IO模型的socket server实现与测试。 这里采用多种模型实现了一个TCP ECHO服务器,将client发送的内容echo回去。 client每秒会发送一次请求,server保持并发连接并进行相应。 现已实现的模型: base: 最原始的echo服务器 thread: 多线程模型 select: select模型 poll: poll模型 epoll: epoll模型 参数 修改src/clients.sh 可以生成指定数量的client 修改