搜索资源列表
sendarp
- 类似arp防火墙的功能,输入自己的ip地址,要发送的arp回复的主机IP地址,既可以实现在数据链路成发送arp响应包。 主要练习一下Linux下面socket 和ioctrl的用法。-Similar to the arp firewall function, enter your ip address, to send arp reply to the host IP address, not only can be achieved in the data link into the se
icmp1
- 向目的主机发送带回送消息的ICMP数据包,并对目的主机返回的ICMP数据包进行解析,判断目的主机是否处于活动状态-To the purpose of the host to send a message to send back ICMP packets, and the purpose of the host returns ICMP packet parsing to determine the purpose of the host is active
packet
- python实现两个以太网端口间的发送和接收以太网数据包-python achieved between the two Ethernet ports to send and receive Ethernet packets
jnetpcap-1.3.b4-1.debian.x86_64
- A java wrapper for popular "libpcap" and "WinPcap" libraries. Accurate full API translation. Packet buffers delivered with no copies. Send custom packets, gather statistics. Exposes advanced low level kernel management methods, all and more in Ja
Linux-driver-development16
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第16章、Linux网络设备驱动。网络设备是完成用户数据包在网络媒介上发送和接收的设备,它将上层协议传递下来的数据包以特定的媒介访问控制方式进行发送,并将接收到的数据包传递给上层协议。 与字符设备和块设备不同,网络设备并不对应于/dev目录下的文件,应用程序最终使用套接字(socket)完成与网络设备的接口。因而在网络设备身上并不能体现出“一切都是文件”的思想。Linux系统对网络设备驱动定义了4个层次
txCtrlServ
- Tx services module, e.g. send-null packet.A sub-module of TxCtrl module (uses it s object).
ether-wake
- Send a magic packet to wake up sleeping machines for Linux.
qib_uc
- construct a request packet (SEND, RDMA write) Source Code for Linux.
ipath_sdma
- This function queues one IB packet onto the send DMA queue per call.
hvsi_lib
- hvsi send packet for Linux v2.13.6.
gdbstub
- Send the packet in buffer. Check for gdb connection if asked for.
rtl8188eu_xmit
- in FW LPS mode. The function is to fill the Tx descr iptor of this packets, then Fw can tell Hw to send these packet derectly. -in FW LPS mode. The function is to fill the Tx descr iptor of this packets, then Fw can tell Hw to send these packet de
ieee80211_tx
- Classify the to-be send data packet.
normal_test
- Send Side - Packetization callback - will create and send a packet to the VCMReceiver.
ping
- 编写一个简单的 ping 程序。利用 Raw Socket 封装和发送以太网帧的功能,实现 ICMP 包的发送和接收,并输出结果。(Write a simple ping program. Using Raw Socket encapsulation and send Ethernet frame function, to achieve ICMP packet sending and receiving, and output the results.)
01_session_daemon_test
- 在网络通讯时,源主机的应用程序知道目的主机的IP地址和端口号,却不知道目的主机的硬件地址,而数据包首先是被网卡接收到再去处理上层协议的,如果接收到的数据包的硬件地址与本机不符,则直接丢弃。因此在通讯前必须获得目的主机的硬件地址。ARP协议就起到这个作用。源主机发出ARP请求,询问“IP地址是192.168.0.1的主机的硬件地址是多少”,并将这个请求广播到本地网段(以太网帧首部的硬件地址填FF:FF:FF:FF:FF:FF表示广播),目的主机接收到广播的ARP请求,发现其中的IP地址与本机相符,