搜索资源列表
tcpfunc
- unix下用C写的实现2主机间TCP通讯用的函数。-under unix C was the realization of two mainframe between TCP communications functions.
tcpdmn
- 一个tcp通讯公用程序-a common communications procedures.
UnixTCP
- Unix/Linux下服务端/客户通过TCP/IP通讯的程序-Unix / Linux server / client through the TCP / IP communications procedures
UNixNetworkProgram
- 客户client<->服务器server 1 多对多的关系 2 通讯的协议族 TCP UDP IPv4 IPv6 -Client client <-> server server 1 many-to-many relationship between 2 communications protocol suite TCP UDP IPv4 IPv6
tcp
- 用标准C实现的TCP/IP socket通讯函数,基于unix平台-Implemented using standard C TCP/IP socket communication functions based on unix platforms
tcp
- UDP实现的简易通讯程序 用sendto(),recvfrom()函数实现客户机与服务器之间的信息交换。-port scan
socket.tar
- Linux TCP socket通讯,visual C++实现-Linux TCP socket communication, visual C++ implementation
Qtnetwork
- Qt初学,网络模块部分,tcp协议,简单的实现网络通讯-Qt beginner, part of the network module, tcp protocol, a simple network communications
server
- Tcp通讯,服务器程序,采用了多路复用,希望能给新学者一点帮助(Tcp communication, server program)
tcp通讯协议握手分析
- 详细介绍TCP通讯过程,TCP通讯握手机制及源码(Details of the TCP communication process, TCP communications, holding mobile phone system and source code)
OICQ
- 实现上位机和下位机之间的通讯,使用TCP协议(Realize the communication between the upper machine and the lower machine)
tcp
- 在linux嵌入式平台上进行TCP通信代码(TCP communication code on Linux Embedded Platform)
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