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

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. /* This file contains prototypes for system dependent API
  23.    from the RSTP to an operation system */
  24.   
  25. #ifndef _STP_OUT_H__
  26. #define _STP_OUT_H__
  27. /* In the best case: clean all Learning entries with
  28.  the vlan_id and the port (if 'exclude'=0) or for all ports,
  29.  exclude the port (if ''exclude'=1). If 'port'=0, delete all
  30.  entries with the vlan_id, don't care to 'exclude'  */
  31. typedef enum {
  32.   LT_FLASH_ALL_PORTS_EXCLUDE_THIS,
  33.   LT_FLASH_ONLY_THE_PORT
  34. } LT_FLASH_TYPE_T;
  35. int
  36. STP_OUT_flush_lt (IN int port_index, IN int vlan_id,
  37.                   IN LT_FLASH_TYPE_T type, IN char* reason);
  38. void /* for bridge id calculation */
  39. STP_OUT_get_port_mac (IN int port_index, OUT unsigned char* mac);
  40. unsigned long
  41. STP_OUT_get_port_oper_speed (IN unsigned int portNo);
  42. int /* 1- Up, 0- Down */
  43. STP_OUT_get_port_link_status (IN int port_index);
  44. int /* 1- Full, 0- Half */
  45. STP_OUT_get_duplex (IN int port_index);
  46. #ifdef STRONGLY_SPEC_802_1W
  47. int
  48. STP_OUT_set_learning (IN int port_index, IN int vlan_id, IN int enable);
  49. int
  50. STP_OUT_set_forwarding (IN int port_index, IN int vlan_id, IN int enable);
  51. #else
  52. /*
  53.  * In many kinds of hardware the state of ports may
  54.  * be changed with another method
  55.  */
  56. int
  57. STP_OUT_set_port_state (IN int port_index, IN int vlan_id, IN RSTP_PORT_STATE state);
  58. #endif
  59. int
  60. STP_OUT_set_hardware_mode (int vlan_id, UID_STP_MODE_T mode);
  61. int
  62. STP_OUT_tx_bpdu (IN int port_index, IN int vlan_id,
  63.                  IN unsigned char* bpdu,
  64.                  IN size_t bpdu_len);
  65. const char *
  66. STP_OUT_get_port_name (IN int port_index);
  67. int
  68. STP_OUT_get_init_stpm_cfg (IN int vlan_id,
  69.                            INOUT UID_STP_CFG_T* cfg);
  70. int
  71. STP_OUT_get_init_port_cfg (IN int vlan_id,
  72.                            IN int port_index,
  73.                            INOUT UID_STP_PORT_CFG_T* cfg);
  74. #endif /* _STP_OUT_H__ */