搜索资源列表
TCPComm
- 这是一个可跨linux、windows平台的TCP/IP通讯程序-This is a cross - linux, windows platform TCP / IP communication procedures
linux-TcpIP
- TCP/IP的源代码分析,是我看的资料里边最好的一个-TCP / IP source code analysis, is that I do the best information inside a
PF_PACKET
- Linux下的面向链路层的数据收发协议的使用。用于高速数据传输,不受应用层TCP/IP协议的束缚。
linux下Qt实现的视频点播系统
- 提供的代码是编写一个基于linux系统的网络视频点播应用程序,利用Qt工具编写图形界面和基于TCP协议的网络传输模块。Linux操作系统以其开源性、多用户多任务、支持多种硬件平台、可靠地安全稳定性能以及日趋完善的图形界面和丰富的网络功能等等,逐渐成为了各行业的首选操作系统,尤其是基于ARM内核的嵌入式linux更是得到了极为广泛的应用。 本系统分为服务器端和客户端两部分。服务器端提供多视频源,供用户进行选择,客户端提供人机交互界面,当用户需要点播某个视频时,首先在Ip Address栏输入服务器
oppbsd-1.0-136.tar
- 在LINUX环境下,基于OMNET++的TCP/IP协议仿真实例-In the WINDOWS environment, based on a variety of OMNET++ simulation
shiyan1
- (1)复习Linux操作系统下的C语言程序的编辑、编译方法,完成简单的变元表读取显示程序。 (2)通过简单程序学习套接字地址、IP地址相关处理函数的使用。 (3)通过两个能完成基本通信功能的TCP服务器程序和客户机程序学习基本Socket函数的使用。-(1) under the operating system review Linux C language program, editor of the compilation approach, complete simple chan
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
telnet
- linux下和Windows下的freepascal代码,实现tcp/ip协议-under linux and Windows under the freepascal of code and the tcp/ip protocol
ipmsg_dong_V1.0(1)
- 这是为出入Linux世界的学弟学妹们准备的,关于tcp/udp的联系项目-飞鸽传书这个本人自己看飞鸽传书协议自己编写的 v1.0,完成了基本的功能:1:上线、下线广播2:收发消息3:收发文件-Ready access to the Linux world, Benedictine College Shanghai Campus, contact the project on the tcp/udp- IP Messenger, I see the IP Messenger v1.0 of the
tcp.ZIP
- 这是tcp ip的参考聊天程序,可以在linux运行,可以参照修改-This is a TCP IP reference chat program, can run on Linux, can consult to modify
ipmsg_dong_V1.0(1)
- 这是为出入Linux世界的学弟学妹们准备的,关于tcp/udp的联系项目-飞鸽传书这个本人自己看飞鸽传书协议自己编写的 v1.0,完成了基本的功能:1:上线、下线广播2:收发消息3:收发文件-Ready access to the Linux world, Benedictine College Shanghai Campus, contact the project on the tcp/udp- IP Messenger, I see the IP Messenger v1.0 of the
loc-build-desktop-Qt_4_8_1_dans_le_PATH__Syst_me_
- It is a graphical user interface for avoustic source localisation. It uses an imote2 wireless sensor with four microphone to determine the acoustic source coordinate with the TDOA methode. The link between the host pc and the imote is
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
linux下的多线程高并发tcp服务器
- 基于epoll的多线程TCP服务器 基于epoll,监听指定端口的TCP请求; TCP长连接、短连接分别使用不同的端口; 当接收到客户端的TCP短连接请求时,返回服务器ip地址、MAC地址;当接收到客户端的TCP长连接请求时,服务器接收连接,客户端周期性向服务器发送心跳; 支持多个客户端的并发TCP请求; 使用多线程技术,同时监听、提供服务; 设计服务器端和客户端的通信协议,使用JSON格式。