vector.h
上传用户:allwinjm
上传日期:2021-08-29
资源大小:99k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Unix_Linux

  1. /************************************************************************ 
  2.  * RSTP library - Rapid Spanning Tree (802.1t, 802.1w) 
  3.  * Copyright (C) 2001-2003 Optical Access 
  4.  * Author: Alex Rozin 
  5.  * 
  6.  * This file is part of RSTP library. 
  7.  * 
  8.  * RSTP library is free software; you can redistribute it and/or modify it 
  9.  * under the terms of the GNU Lesser General Public License as published by the 
  10.  * Free Software Foundation; version 2.1 
  11.  * 
  12.  * RSTP library is distributed in the hope that it will be useful, but 
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of 
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser 
  15.  * General Public License for more details. 
  16.  * 
  17.  * You should have received a copy of the GNU Lesser General Public License 
  18.  * along with RSTP library; see the file COPYING.  If not, write to the Free 
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 
  20.  * 02111-1307, USA. 
  21.  **********************************************************************/
  22. /* STP priority vectors API : 17.4.2 */
  23.  
  24. #ifndef _PRIO_VECTOR_H__
  25. #define _PRIO_VECTOR_H__
  26. typedef struct bridge_id
  27. {
  28.   unsigned short    prio;
  29.   unsigned char     addr[6];
  30. } BRIDGE_ID;
  31. typedef unsigned short  PORT_ID;
  32. typedef struct prio_vector_t {
  33.   BRIDGE_ID root_bridge;
  34.   unsigned long root_path_cost;
  35.   BRIDGE_ID design_bridge;
  36.   PORT_ID   design_port;
  37.   PORT_ID   bridge_port;
  38. } PRIO_VECTOR_T;
  39. void 
  40. STP_VECT_create (OUT PRIO_VECTOR_T* t,
  41.                  IN BRIDGE_ID* root_br,
  42.                  IN unsigned long root_path_cost,
  43.                  IN BRIDGE_ID* design_bridge,
  44.                  IN PORT_ID design_port,
  45.                  IN PORT_ID bridge_port);
  46. void
  47. STP_VECT_copy (OUT PRIO_VECTOR_T* t, IN PRIO_VECTOR_T* f);
  48. int
  49. STP_VECT_compare_bridge_id (IN BRIDGE_ID* b1, IN BRIDGE_ID* b2);
  50. int
  51. STP_VECT_compare_vector (IN PRIO_VECTOR_T* v1, IN PRIO_VECTOR_T* v2);
  52. void
  53. STP_VECT_get_vector (IN BPDU_BODY_T* b, OUT PRIO_VECTOR_T* v);
  54. void
  55. STP_VECT_set_vector (IN PRIO_VECTOR_T* v, OUT BPDU_BODY_T* b);
  56. #ifdef STP_DBG
  57. void
  58. STP_VECT_print (IN char* title, IN PRIO_VECTOR_T* v);
  59. void
  60. STP_VECT_br_id_print (IN char *title, IN BRIDGE_ID* br_id, IN Bool cr);
  61. #endif
  62. #endif /* _PRIO_VECTOR_H__ */