搜索资源列表
tcpcandperl
- 本程序包包含有linux下socket通讯的tcp例程,包含有tcp的服务器端和客户端,含有C语言以及perl两种实现,本人整理,全部能运行。-bags containing the procedures under linux tcp socket communications routines, including a tcp servers and clients, containing C and perl language to achieve both, I collated all
TCPComm
- 这是一个可跨linux、windows平台的TCP/IP通讯程序-This is a cross - linux, windows platform TCP / IP communication procedures
linux下关于socket编程的C例子
- 这是linux下关于C的编程,其中包含了socket的几种用法的例子,有udp、tcp以及select的使用。-under linux on the C programming, which includes a socket several examples of usage, udp, tcp and select use.
epoll-lib-0.11.tar
- linux环境下大容量TCP连接,用于网络通信.-large capacity TCP connection for network communications.
cli__
- Linux下通过TCP传送文件.客户端 文件名不能超过30个字符-Linux with TCP transmission of documents. Client documents were not more than 30 characters
se__
- Linux下通过TCP传送文件的服务器端 先开服务器在开客户端-Linux TCP transmission of documents through the server to open at the beginning of the server client
linux-TcpIP
- TCP/IP的源代码分析,是我看的资料里边最好的一个-TCP / IP source code analysis, is that I do the best information inside a
arm-linux-insight
- windows下的GDB insight前端,采用gdb-6.8,可以通过TCP或串口对ARM系列linux环境下的应用程序进行调试。
linux下Qt实现的视频点播系统
- 提供的代码是编写一个基于linux系统的网络视频点播应用程序,利用Qt工具编写图形界面和基于TCP协议的网络传输模块。Linux操作系统以其开源性、多用户多任务、支持多种硬件平台、可靠地安全稳定性能以及日趋完善的图形界面和丰富的网络功能等等,逐渐成为了各行业的首选操作系统,尤其是基于ARM内核的嵌入式linux更是得到了极为广泛的应用。 本系统分为服务器端和客户端两部分。服务器端提供多视频源,供用户进行选择,客户端提供人机交互界面,当用户需要点播某个视频时,首先在Ip Address栏输入服务器
TCP_server
- linux tcp 多进程并发服务器编程-linux tcp multi-process concurrent server programming
source.tar
- linux 实现QT聊天 本程序可作TCP的QT编程学习用 非常有价值-QT chat linux realization of this procedure can be used for TCP programming in QT with a very valuable learning
Dns_Client
- this program is a dns protocol client, sends the query to certain server and analysis the answer to display it, it works using both udp and tcp protocols
TCP-IP-and--IPX-routing
- This tutorial is intended to supply enough information to set up a relatively simple WAN or Internet-connected LAN using WANPIPE™ router cards or other routers. Explanations of IP addresses, classes, netmasks, subnetting, and routing are pro
tcp-transfer-xp-linux
- 控制台下发送并接收文件的程序,包括windows xp环境下以及linux环境下,这个是本人参加比赛用的。-Console to send and receive files of the program, including the windows xp environment and linux environment, this is my race use.
tcpClient_1
- linux tcp客户端设计。有协议、socket、以及文件操作才封装。c-erery one is no1;
tcp.ZIP
- 这是tcp ip的参考聊天程序,可以在linux运行,可以参照修改-This is a TCP IP reference chat program, can run on Linux, can consult to modify
linux-internet-coding
- 基于tcp/ip套接字程序的流控制,运行平台linux,客户机与服务器端程序均有-Based on tcp/ip socket flow control procedures, operating platform Linux, client and server-side procedures are
linux_qq
- 该代码在Linux实现了一个类似于windows上的QQ的聊天工具。主要是基于TCP/IP协议的socket通信。包括服务器端和客户端两部分,其中客户端使用了select的IO多路复用技术,服务器端由于要监听多个客户端,因此使用了epoll的IO多路复用技术。整个项目目前可以实现的功能有用户的注册与登录,添加好友,发送聊天消息,发送与接收文件等。(The code implements a chat tool similar to windows on QQ in Linux. Socket c
TCP_Socket
- 完成了Linux下简单的TCP套接字编程,是一个完整的TCP客户端/服务器实例(The simple TCP socket programming under Linux is completed, which is a complete TCP client / server instance)
linux下的多线程高并发tcp服务器
- 基于epoll的多线程TCP服务器 基于epoll,监听指定端口的TCP请求; TCP长连接、短连接分别使用不同的端口; 当接收到客户端的TCP短连接请求时,返回服务器ip地址、MAC地址;当接收到客户端的TCP长连接请求时,服务器接收连接,客户端周期性向服务器发送心跳; 支持多个客户端的并发TCP请求; 使用多线程技术,同时监听、提供服务; 设计服务器端和客户端的通信协议,使用JSON格式。