route.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /****************************************************************************
  2.  *******                                                              *******
  3.  *******                 R O U T E     H E A D E R
  4.  *******                                                              *******
  5.  ****************************************************************************
  6.  Author  : Ian Nandhra / Jeremy Rolls
  7.  Date    :
  8.  *
  9.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  10.  *
  11.  *      This program is free software; you can redistribute it and/or modify
  12.  *      it under the terms of the GNU General Public License as published by
  13.  *      the Free Software Foundation; either version 2 of the License, or
  14.  *      (at your option) any later version.
  15.  *
  16.  *      This program is distributed in the hope that it will be useful,
  17.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *      GNU General Public License for more details.
  20.  *
  21.  *      You should have received a copy of the GNU General Public License
  22.  *      along with this program; if not, write to the Free Software
  23.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  Version : 0.01
  25.                             Mods
  26.  ----------------------------------------------------------------------------
  27.   Date     By                Description
  28.  ----------------------------------------------------------------------------
  29.  ***************************************************************************/
  30. #ifndef _route_h
  31. #define _route_h
  32. #ifdef SCCS_LABELS
  33. #ifndef lint
  34. /* static char *_rio_route_h_sccs = "@(#)route.h 1.3"; */
  35. #endif
  36. #endif
  37. #define MAX_LINKS 4
  38. #define MAX_NODES 17                          /* Maximum nodes in a subnet */
  39. #define NODE_BYTES ((MAX_NODES / 8) + 1)      /* Number of bytes needed for
  40.                                                  1 bit per node */
  41. #define ROUTE_DATA_SIZE  (NODE_BYTES + 2)     /* Number of bytes for complete 
  42.                                                  info about cost etc. */
  43. #define ROUTES_PER_PACKET ((PKT_MAX_DATA_LEN -2)/ ROUTE_DATA_SIZE)
  44.                                               /* Number of nodes we can squeeze
  45.                                                  into one packet */
  46. #define MAX_TOPOLOGY_PACKETS (MAX_NODES / ROUTES_PER_PACKET + 1)
  47. /************************************************
  48.  * Define the types of command for the ROUTE RUP.
  49.  ************************************************/
  50. #define ROUTE_REQUEST    0                    /* Request an ID */
  51. #define ROUTE_FOAD       1                    /* Kill the RTA */
  52. #define ROUTE_ALREADY    2                    /* ID given already */
  53. #define ROUTE_USED       3                    /* All ID's used */
  54. #define ROUTE_ALLOCATE   4                    /* Here it is */
  55. #define ROUTE_REQ_TOP    5                    /* I bet you didn't expect....
  56.                                                  the Topological Inquisition */
  57. #define ROUTE_TOPOLOGY   6                    /* Topology request answered FD */
  58. /*******************************************************************
  59.  * Define the Route Map Structure
  60.  *
  61.  * The route map gives a pointer to a Link Structure to use.
  62.  * This allows Disconnected Links to be checked quickly
  63.  ******************************************************************/
  64. typedef struct COST_ROUTE COST_ROUTE;
  65. struct COST_ROUTE {
  66.                       unsigned char cost;        /* Cost down this link */
  67.                       unsigned char route[NODE_BYTES]; /* Nodes thorough this route */
  68.                   } ;
  69. typedef struct ROUTE_STR ROUTE_STR ;
  70. struct  ROUTE_STR {
  71.                       COST_ROUTE cost_route[MAX_LINKS];
  72.                                                 /* cost / route for this link */
  73.                       ushort favoured;          /* favoured link */
  74.                   } ;
  75. #define NO_LINK            (short) 5      /* Link unattached */
  76. #define ROUTE_NO_ID        (short) 100    /* No Id */
  77. #define ROUTE_DISCONNECT   (ushort) 0xff  /* Not connected */
  78. #define ROUTE_INTERCONNECT (ushort) 0x40  /* Sub-net interconnect */
  79. #define SYNC_RUP         (ushort) 255
  80. #define COMMAND_RUP      (ushort) 254
  81. #define ERROR_RUP        (ushort) 253
  82. #define POLL_RUP         (ushort) 252
  83. #define BOOT_RUP         (ushort) 251
  84. #define ROUTE_RUP        (ushort) 250
  85. #define STATUS_RUP       (ushort) 249
  86. #define POWER_RUP        (ushort) 248
  87. #define HIGHEST_RUP      (ushort) 255   /* Set to Top one */
  88. #define LOWEST_RUP       (ushort) 248   /* Set to bottom one */
  89. #endif
  90. /*********** end of file ***********/