搜索资源列表
UnixTCP
- Unix/Linux下服务端/客户通过TCP/IP通讯的程序-Unix / Linux server / client through the TCP / IP communications procedures
tcp
- 用标准C实现的TCP/IP socket通讯函数,基于unix平台-Implemented using standard C TCP/IP socket communication functions based on unix platforms
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