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

📄 igmp.h

📁 linux下从网卡远程启动
💻 H
字号:
#ifndef	_IGMP_H#define	_IGMP_H#define IGMP_QUERY	0x11#define IGMPv1_REPORT	0x12#define IGMPv2_REPORT	0x16#define IGMP_LEAVE	0x17#define GROUP_ALL_HOSTS 0xe0000001 /* 224.0.0.1 Host byte order */struct igmp {	uint8_t  type;	uint8_t  response_time;	uint16_t chksum;	in_addr group;};struct igmp_ip_t { /* Format of an igmp ip packet */	struct iphdr ip;	uint8_t router_alert[4]; /* Router alert option */	struct igmp igmp;};#endif	/* _IGMP_H */

⌨️ 快捷键说明

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