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

📄 iproutenodedata.h

📁 vxworks 6.x 的全部头文件
💻 H
字号:
/* ipRouteNodeData.h - data structures for the IP routing information base *//* Copyright 1984 - 2005 Wind River Systems, Inc. *//*modification history--------------------01d,24feb05,spm  performance updates and code cleanup (SPR #100995)01c,28may04,niq  Merging from base6 label POST_ITER5_FRZ16_REBASE01b,09oct02,spm  added field for private RIB data01a,09aug02,spm  written*//*DESCRIPTIONThis file includes route entry structures for an implementation ofthe Routing Information Base component that supports IP. The IP RIBprovides a generic interface for data structures that organize routeentries into RIB nodes according to the destination address and netmaskvalues. This file also defines macros to retrieve those values fromwithin the private data structures. All RIB implementations must use the common fields from the ribNodestructure defined in this include file at the start of every allocatedRIB node.*/#ifndef _INCipRouteNodeDatah#define _INCipRouteNodeDatah#ifdef __cplusplusextern "C" {#endiftypedef struct ipRouteNode    {    struct sockaddr * pDest;     /* "public" RTM address with family/length */    struct sockaddr * pNetmask;  /* "public" RTM netmask with family/length */    void *  pRibEntry;  /* Private RIB data: gets internal data structure */    ULONG * pAddress; 	/* Pointer to IPv4 or IPv6 address bytes in pDest */    ULONG   prefix;     /* IPv6 prefix length or full IPv4 netmask */    void  * pRtmEntry; 	/* Private data for RTM: provides list of entries */    } IP_ROUTE_NODE;typedef struct ipRouteNode * IP_NODE_ID;#ifdef __cplusplus}#endif#endif /* _INCipRouteNodeDatah */

⌨️ 快捷键说明

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