搜索资源列表
TCP
- linux环境下的TCP应用程序,有客户端和服务器端.
TCPecho
- 在Linux/Unix环境下的网络编程,是TCP/IP的网际互联中的ECHO服务。系程序针对TCP客户端,,作用是服务器返回从客户处收到的所有数据
qtserver
- qt实现的多线程服务器和客户端,可以用来学习QT下的socket网络编程-qt multithreaded implementation of server and client can be used to study QT network programming socket under
tcp_romote_mp
- Linux下实现tcp多进程并发服务器,有客户端和服务端俩个类-Linux achieve tcp multi-process concurrent server, there are both client and server classes
tcpMuti
- 基于Tcp的多线程并发服务器,利用fork创建线程,一个服务器端可以对应多个客户端-Tcp-based multi-threaded concurrent server, using fork to create threads, a server-side may correspond to multiple clients
qclient
- 这是基于QT2.3.10的TCP客户端程序-This is based on the TCP client QT2.3.10 procedures
Tcp-ip
- linux下的tcp/ip通信,包括服务器端和客户端-linux under tcp/ip communication, including server-side and client
6
- TCP回射服务器 服务端能够接受客户端发来的消息,回射显示-TCP back to shoot a server to accept client server sent a message to return to radio show
tcp
- 在linux环境下实现TCP远程控制,即实现客户端与服务器端的通信-In the linux environment to achieve TCP remote control, namely, to achieve client and server-side communication
tcp.tar
- linux下的socket编程(服务端、客户端)-socket programming under linux (server, client)
Lam_qt
- 本软件采用Linux系统,以QT为开发语言,在实现了基本通信功能的基础之上,继续将软件进行交叉编译,并将其成功移植到ARM9开发板上。本软件没有服务器,只有单一的客户端,软件启动时通过使用UDP协议向255.255.255.255这个广播地址发送一个经过编码的广播包建立在线用户列表;本软件可以在XP系统、Ubuntu系统和ARM9开发板运行,使用了Tcp/Udp、Socket等技术;软件实现了基本的修改用户名、一对一聊天和文件的传输功能。 -The software deliberately
Linux_TCP
- 本文件中包含两个文件TCP客户端client.c和TCP服务器server.c-This file contains two files TCP client and TCP server server.c client.c
tcpclient
- linux下用c语言编写的TCP客户端服务源码-c under linux written with the TCP client service source ~ ~ ~ ~
linux
- 在linux环境下编写的简易的tcp客户端和服务器端程序,代码测试运行有效-Simple TCP client and server-side programs written in linux environment, code test run
TCP.tar
- TCP客户端与服务器的源代码,功能是客户端向服务器发送文件- TCP client and server source code, function is to send a file to the server,
tcp
- linux 环境下的基于TCP协议的通信程序,实现了客户端和服务器的通信-linux environment based on the TCP protocol communications program to achieve the communication between client and server
tcpSocket
- 实现基于EPOLL的tcp服务端、客户端的封装。(EPOLL based implementation of TCP server, client package)
xmlrecvsrv.tar
- 支持多线程 接收客户端xml数据包解析后保存到指定路径(Support multi-threaded receive client XML packets resolved, save to the specified path)
main
- 数据在串口和tcp服务器或者tcp客户端之间转发 数据在tcp服务器或者tcp客户端 和 tcp客户端之间转发(Data is forwarded between the serial port and the TCP server or the TCP client Data is forwarded between the TCP server or the TCP client and the TCP 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