搜索资源列表
tcpdump-3.8.3.tar
- C语言实现的Linux下的抓包工具,功能全面,支持多种协议,如icmp arp udp tcp等。需要libpcap的支持。-C language of the Linux capturing Packet tools, full functions, support for multiple protocols, such as icmp arp udp tcp so. Libpcap need support.
udpgen.c
- IP流量发生器,用于产生UDP报文,该程序用于模拟你需要的IP流量。可运行于Linux-IP flow generator, used to produce UDP packet, the procedure you need to simulate the IP flow. Can be run on Linux
botnet-1[1].6.3.tar
- 这种NAT内部的机器A连接过外网机器C后,NAT会打开一个端口.然后外网的任何发到这个打开的端口的UDP数据报都可以到达A.不管是不是C发过来的-such NAT internal machinery A connecting machines over external networks C, NAT will open a port. Then external networks to any of the open ports of UDP datagrams can be reached
easelib
- 这是本人在Linux下开发经常使用的一组C++工具类,包括了Socket类、TCP服务类、UDP服务类、Mysql数据库操作类、日志类、配置文件解析类、日期时间操作类、MD5和Base64加解密类、线程和线程池类、XML文件解析类等-this is my development in Linux are frequently used by a group C Tools categories, including the Socket class. TCP services category,
tcpspy
- 一款监控tcp/udp的程序,编程语言为VC,很适合初学-tcp / udp procedures for the programming language Visual C + + is well-suited to beginners
UdpClient
- 用Visual C++编写的UDP客户端程序。
UdpServer
- linux下使用C++编程,利用UDP协议,作为客户端来接收数据
bootloader
- ⑴ 提供简单命令 A、通过串口加载程序到指定内存 B、将程序烧写到 NANDFLASH 指定位置 C、LCD 操作函数 I、画点 II、画线 III、画圆 IV、显示图像 ⑵ bootloader 具备自我更新能力 ⑶ bootloader 可以启动 LINUX ⑷ 能通过网络传输文件(FTP/UDP)
chat
- 基于BSD C的socket编程 采用udp协议,类似两个进程通信的聊天程序 压缩包包含两个文件,编译后运行是两个不同的聊天进程 运行环境linux
udp源代码
- udp的源代码实现,linux学C的可以看看了-udp achieve the source code, the C linux school can look at the
聊天软件
- 这是TCP_UDP编程实现的C S模式聊天软件,可以从服务器进行广播,客户端只能与服务器通信.传输模式可以是TCP或UDP,是TCP_UDP学习的不错选择-Programming C S chat software, it is broadcast from the server, the client and server communication only. Transfer mode can be TCP or UDP, TCP_UDP learning is a good choice
socket
- linux下面实现的socket网络编程。可以实现多客户端联机server的功能。-linux following the realization of the socket network programming. Can be achieved online multi-client server functionality.
chatclient.c.tar
- UDP chat client and server
udpServer.c
- UDP server program to listen client application
udp.tar
- udp communication qt c++ programming
UDP-circle-server-program
- 基于linux环境下的基于UDP协议的C语言循环服务器的程序。-Linux-based environment based on the UDP protocol C-language program cycle the server.
UDP.tar
- 在Linux下用C语言编写的UDP套接口程序,在Linux下打开两个终端,一个终端运行服务器端程序,一个终端运行客户端程序,在执行客户端后面加上 localhost 8888就可用进行网络通信了。-Under Linux using C language UDP socket program in Linux, open two terminals, a terminal server to run the program, run a terminal client program, foll
udp-test
- linux下的C语言UDP测试程序,希望大家喜欢-C language UDP test program under linux, I hope you like it
udp
- 嵌入式 linux c 下的UDP,在学习使用中 是很好的学习资料-The embedded linux c UDP, learning to use a good learning materials
socket UDP
- TCP/IP协议叫做传输控制/网际协议,又叫做网络通信协议。实际上,它包括上百个功能的协议。 套接字(socket):在网络中用来描述计算机中不同程序与其他计算程序的通信方式。 套接字分为三类; 流式socket(SOCK_STREAM):提供可靠,面向连接的通信流;它使用TCP协议,从而保证了数据传输的正确性和顺序性。 数据报socket(SOCK_DGRAM):数据报套接字定义了一种无连接的服务,数据通过相互独立的报文进行传输,无序的,并且不保证可靠,无差错的。它使用的数据报协议是U