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

📄 main.h

📁 AODV
💻 H
字号:
/************************************************************************			       ---AODV-UIUC---			       This software can be used under GNU General Public License.Author: Binita Gupta <binita@uiuc.edu>	University of Illinois, Urbana-Champaign************************************************************************/#ifndef _MAIN_H#define _MAIN_H/* this structure is used to identify the type of received aodv message */typedef struct {	u_int8_t type;}AODV_Msg;struct aodvData {	u_int32_t	dest_ip;	u_int32_t	src_ip; /* prev hop from where the message was received */	int			ttl; };struct timerData {	int				type;	u_int32_t		data;};#endif

⌨️ 快捷键说明

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