⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 udp.h

📁 COPE the first practical network coding scheme which is developped on click
💻 H
字号:
#ifndef CLICKNET_UDP_H#define CLICKNET_UDP_H/* * <clicknet/udp.h> -- UDP header definitions, based on one of the BSDs. * * Relevant RFCs include: *   RFC768	User Datagram Protocol */struct click_udp {    uint16_t	uh_sport;		/* 0-1   source port		     */    uint16_t	uh_dport;		/* 2-3   destination port	     */    uint16_t	uh_ulen;		/* 4-5   UDP length		     */    uint16_t	uh_sum;			/* 6-7   checksum		     */};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -