搜索资源列表
mtpy
- 案例5利用TCP协议实现通讯,用Socket连接获取客户端地址-Case 5, the use of TCP protocol communications, using Socket to connect the client to obtain addresses
FTP_SERVER_SRC
- 项目简介:使用Linux下C语言开发,遵循RFC959协议,以命令解析器为核心,利用Socket作为通讯接口,提供上传下载,断点续传,流量控制,连接控制,支持多种常用FTP客户端。 -Project Descr iption: Using the C language under Linux development, follow the RFC959 protocol to the command parser as the core, the use of Socket as a com
socket
- socket 编程 构建了一个服务器 和一个客户端 可以进行网络通讯-socket programming built a server and a client network communication can be
UDPcommunication
- 综合考虑到数据信息量,以及数据传输可靠性,采用在应用层封装可靠性的自定义协议,底层使用适合大数据量传输UDP协议,实现通讯传输效率和可靠性的平衡。实现上使用socket编程,协议设计上采用对数据报文的分帧,传输控制(报文的顺序等),校验,数据的转义,以及服务器/客户端的通讯握手来实现,在协议设计中充分考虑到继承性和扩展性.-Considering the amount of information to the data, and data transmission reliability, w
780470147627-code-ch15
- c编写的linux下的socket通讯简单示例,服务端源码和客户端源码-c under linux written in a simple example of socket communication, client server source code and source code
can_socket
- unix下can通讯套接字的应用开发,包括服务端和客户端。-Unix can communication socket application development, including server and client.
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C