搜索资源列表
TCP
- linux环境下的TCP应用程序,有客户端和服务器端.
UnixTCP
- Unix/Linux下服务端/客户通过TCP/IP通讯的程序-Unix / Linux server / client through the TCP / IP communications procedures
tcpc
- Linux下的C编程,使用tcp协议,定时发送数据,为客户端程序。
TCPecho
- 在Linux/Unix环境下的网络编程,是TCP/IP的网际互联中的ECHO服务。系程序针对TCP客户端,,作用是服务器返回从客户处收到的所有数据
qclient
- 这是基于QT2.3.10的TCP客户端程序-This is based on the TCP client QT2.3.10 procedures
z_socket
- linux 下udp和tcp的客户端和服务器的程序,分类.-linux udp tcp client server
SRDPClient
- 基于TCP和UDP协议的网络编程与程序设计,实现大文件传输功能的客户端的设计。-TCP and UDP protocols based on network programming and program design, large file transfer capabilities to achieve the client design.
linux_xp_tcp
- winxp与Linux的tcp通信程序,winxp作为客户端,linux作为服务器-winxp and Linux, tcp communication program, winxp as client, linux as a server
FTP_socket
- 在Linux系统上完成一个文件传输协议(FTP)的简单实现。通过本实验,深入了解FTP协议的原理和协议细节,学会利用socket接口设计实现简单的应用层协议,掌握TCP/IP网络应用程序的基本设计方法和实现技巧。在Linux系统上使用socket接口实现FTP客户端程序,严格按照RFC959,使客户端可以连接至服务器,并且可以进行一些FTP的基本操作,如列出目录、下载文件等。从FTP协议的实现角度来看,客户端与服务器的命令通道和数据通道需要分离。-In the Linux system to c
network-video--player
- 提供的代码是编写一个基于linux系统的网络视频点播应用程序,利用Qt工具编写图形界面和基于TCP协议的网络传输模块。Linux操作系统以其开源性、多用户多任务、支持多种硬件平台、可靠地安全稳定性能以及日趋完善的图形界面和丰富的网络功能等等,逐渐成为了各行业的首选操作系统,尤其是基于ARM内核的嵌入式linux更是得到了极为广泛的应用。 本系统分为服务器端和客户端两部分。服务器端提供多视频源,供用户进行选择,客户端提供人机交互界面,当用户需要点播某个视频时,首先在Ip Address栏输
2-6-1
- linux下tcp服务器端与客户端程序 非常经典-tcp server client
linux
- 在linux环境下编写的简易的tcp客户端和服务器端程序,代码测试运行有效-Simple TCP client and server-side programs written in linux environment, code test run
tcp
- linux 环境下的基于TCP协议的通信程序,实现了客户端和服务器的通信-linux environment based on the TCP protocol communications program to achieve the communication between client and server
client1
- TCP/DUP简单QQ聊天功能,客户端程序。-client chat for TCP/DUP
TCP_communication
- Linux下的一个服务器客户端的小程序,基于TCP的实现;服务器可以同时接受多个客户的接入,通过子进程处理客户请求,下面的例子中,服务器只将客户的IP和端口以及发送的信息显示,然后原样的将客户发送的信息发送给客户。客户端仅仅是输入信息以及显示收到的信息。-Linux under a small application server to the client, based on the TCP implementation Server can accept multiple clients
QtmodbusTCP
- Qt5自带的modbusTCP类实现的TCP modbus通信,程序包含客户端和服务器,开发环境为ubuntu16.04+Qt5.6.1,如打不开服务器,请将编译出的程序用sudo运行。-Qt5 comes with the modbusTCP class to achieve the Modbus TCP communication, the program contains the client and server, the development environment for ubun
xmlrecvsrv.tar
- 支持多线程 接收客户端xml数据包解析后保存到指定路径(Support multi-threaded receive client XML packets resolved, save to the specified path)
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