stp_bpdu.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. /* BPDU formats: 9.1 - 9.3, 17.28 */
  23.  
  24. #ifndef _STP_BPDU_H__
  25. #define _STP_BPDU_H__
  26. #define MIN_BPDU                7
  27. #define BPDU_L_SAP              0x42
  28. #define LLC_UI                  0x03
  29. #define BPDU_PROTOCOL_ID        0x0000
  30. #define BPDU_VERSION_ID         0x00
  31. #define BPDU_VERSION_RAPID_ID   0x02
  32. #define BPDU_TOPO_CHANGE_TYPE   0x80
  33. #define BPDU_CONFIG_TYPE        0x00
  34. #define BPDU_RSTP               0x02
  35. #define TOLPLOGY_CHANGE_BIT     0x01
  36. #define PROPOSAL_BIT            0x02
  37. #define PORT_ROLE_OFFS          2   /* 0x04 & 0x08 */
  38. #define PORT_ROLE_MASK          (0x03 << PORT_ROLE_OFFS)
  39. #define LEARN_BIT               0x10
  40. #define FORWARD_BIT             0x20
  41. #define AGREEMENT_BIT           0x40
  42. #define TOLPLOGY_CHANGE_ACK_BIT 0x80
  43. #define RSTP_PORT_ROLE_UNKN     0x00
  44. #define RSTP_PORT_ROLE_ALTBACK  0x01
  45. #define RSTP_PORT_ROLE_ROOT     0x02
  46. #define RSTP_PORT_ROLE_DESGN    0x03
  47. typedef struct mac_header_t {
  48.   unsigned char dst_mac[6];
  49.   unsigned char src_mac[6];
  50. } MAC_HEADER_T;
  51. typedef struct eth_header_t {
  52.   unsigned char len8023[2];
  53.   unsigned char dsap;
  54.   unsigned char ssap;
  55.   unsigned char llc;
  56. } ETH_HEADER_T;
  57. typedef struct bpdu_header_t {
  58.   unsigned char protocol[2];
  59.   unsigned char version;
  60.   unsigned char bpdu_type;
  61. } BPDU_HEADER_T;
  62. typedef struct bpdu_body_t {
  63.   unsigned char flags;
  64.   unsigned char root_id[8];
  65.   unsigned char root_path_cost[4];
  66.   unsigned char bridge_id[8];
  67.   unsigned char port_id[2];
  68.   unsigned char message_age[2];
  69.   unsigned char max_age[2];
  70.   unsigned char hello_time[2];
  71.   unsigned char forward_delay[2];
  72. } BPDU_BODY_T;
  73. typedef struct stp_bpdu_t {
  74.   ETH_HEADER_T  eth;
  75.   BPDU_HEADER_T hdr;
  76.   BPDU_BODY_T   body;
  77.   unsigned char ver_1_len[2];
  78. } BPDU_T;
  79. #endif /* _STP_BPDU_H__ */