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

📄 nd6_protocol.h

📁 eCos操作系统源码
💻 H
字号:
//==========================================================================////      include/netinet6_nd6_protocol.h////      ////==========================================================================//####BSDCOPYRIGHTBEGIN####//// -------------------------------------------//// Portions of this software may have been derived from OpenBSD or other sources,// and are covered by the appropriate copyright disclaimers included herein.//// -------------------------------------------////####BSDCOPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s):    gthomas// Contributors: gthomas// Date:         2000-01-10// Purpose:      // Description:  //              ////####DESCRIPTIONEND####////==========================================================================/*%%% portions-copyright-nrl-97Portions of this software are Copyright 1997-1998 by Randall Atkinson,Ronald Lee, Daniel McDonald, Bao Phan, and Chris Winters. All RightsReserved. All rights under this copyright have been assigned to the USNaval Research Laboratory (NRL). The NRL Copyright Notice and LicenseAgreement Version 1.1 (January 17, 1995) applies to these portions of thesoftware.You should have received a copy of the license with this software. If youdidn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>.*/#ifndef _NETINET6_ND6_PROTOCOL_H#define _NETINET6_ND6_PROTOCOL_H 1#include <netinet6/icmpv6.h>#define ND6_ROUTER_SOLICITATION         133#define ND6_ROUTER_ADVERTISEMENT        134#define ND6_NEIGHBOR_SOLICITATION       135#define ND6_NEIGHBOR_ADVERTISEMENT      136#define ND6_REDIRECT                    137enum nd6_option {	ND6_OPT_SOURCE_LINKADDR=1,	ND6_OPT_TARGET_LINKADDR=2,	ND6_OPT_PREFIX_INFORMATION=3,	ND6_OPT_REDIRECTED_HEADER=4,	ND6_OPT_MTU=5,	ND6_OPT_ENDOFLIST=256};struct nd_router_solicit {     /* router solicitation */	struct icmpv6hdr rsol_hdr;};#define rsol_type               rsol_hdr.icmpv6_type#define rsol_code               rsol_hdr.icmpv6_code#define rsol_cksum              rsol_hdr.icmpv6_cksum#define rsol_reserved           rsol_hdr.icmpv6_data32[0]struct nd_router_advert {       /* router advertisement */	struct icmpv6hdr radv_hdr;	uint32_t   radv_reachable;   /* reachable time */	uint32_t   radv_retransmit;  /* reachable retransmit time */};#define radv_type               radv_hdr.icmpv6_type#define radv_code               radv_hdr.icmpv6_code#define radv_cksum              radv_hdr.icmpv6_cksum#define radv_maxhoplimit        radv_hdr.icmpv6_data8[0]#define radv_m_o_res            radv_hdr.icmpv6_data8[1]#define ND6_RADV_M_BIT          0x80#define ND6_RADV_O_BIT          0x40#define radv_router_lifetime    radv_hdr.icmpv6_data16[1]struct nd6_nsolicitation {      /* neighbor solicitation */	struct icmpv6hdr  nsol6_hdr;	struct in6_addr   nsol6_target;};struct nd6_nadvertisement {     /* neighbor advertisement */	struct icmpv6hdr  nadv6_hdr;	struct in6_addr   nadv6_target;};#define nadv6_flags nadv6_hdr.icmpv6_data32[0]#define ND6_NADVERFLAG_ISROUTER      0x80#define ND6_NADVERFLAG_SOLICITED     0x40#define ND6_NADVERFLAG_OVERRIDE      0x20struct nd6_redirect {           /* redirect */	struct icmpv6hdr  redirect_hdr;	struct in6_addr   redirect_target;	struct in6_addr   redirect_destination;};struct nd6_opt_prefix_info {    /* prefix information */	uint8_t    opt_type;	uint8_t    opt_length;	uint8_t    opt_prefix_length;	uint8_t    opt_l_a_res;	uint32_t   opt_valid_life;	uint32_t   opt_preferred_life;	uint32_t   opt_reserved2;	struct in6_addr  opt_prefix;};#define ND6_OPT_PI_L_BIT        0x80#define ND6_OPT_PI_A_BIT        0x40struct nd6_opt_mtu {            /* MTU option */	uint8_t   opt_type;	uint8_t   opt_length;	uint16_t  opt_reserved;	uint32_t  opt_mtu;};#endif /* _NETINET6_ND6_PROTOCOL_H */

⌨️ 快捷键说明

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