main.h

来自「AODV」· C头文件 代码 · 共 31 行

H
31
字号
/************************************************************************			       ---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 + =
减小字号Ctrl + -
显示快捷键?