sba.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * The information in this file is provided "AS IS" without warranty.
  12.  *
  13.  ******************************************************************************/
  14. /*
  15.  * Synchronous Bandwith Allocation (SBA) structs
  16.  */
  17.  
  18. #ifndef _SBA_
  19. #define _SBA_
  20. #include "h/mbuf.h"
  21. #include "h/sba_def.h"
  22. #ifdef SBA
  23. /* Timer Cell Template */
  24. struct timer_cell {
  25. struct timer_cell *next_ptr ;
  26. struct timer_cell *prev_ptr ;
  27. u_long start_time ;
  28. struct s_sba_node_vars *node_var ;
  29. } ;
  30. /*
  31.  * Node variables
  32.  */
  33. struct s_sba_node_vars {
  34. u_char change_resp_flag ;
  35. u_char report_resp_flag ;
  36. u_char change_req_flag ;
  37. u_char report_req_flag ;
  38. long change_amount ;
  39. long node_overhead ;
  40. long node_payload ;
  41. u_long node_status ;
  42. u_char deallocate_status ;
  43. u_char timer_state ;
  44. u_short report_cnt ;
  45. long lastrep_req_tranid ;
  46. struct fddi_addr mac_address ;
  47. struct s_sba_sessions  *node_sessions ;
  48. struct timer_cell timer ;
  49. } ;
  50. /*
  51.  * Session variables
  52.  */
  53. struct s_sba_sessions {
  54. u_long deallocate_status ;
  55. long session_overhead ;
  56. u_long min_segment_size ;
  57. long session_payload ;
  58. u_long session_status ;
  59. u_long sba_category ;
  60. long lastchg_req_tranid ;
  61. u_short session_id ;
  62. u_char class ;
  63. u_char fddi2 ;
  64. u_long max_t_neg ;
  65. struct s_sba_sessions *next_session ;
  66. } ;
  67. struct s_sba {
  68. struct s_sba_node_vars node[MAX_NODES] ;
  69. struct s_sba_sessions session[MAX_SESSIONS] ;
  70. struct s_sba_sessions *free_session ; /* points to the first */
  71. /* free session */
  72. struct timer_cell *tail_timer ; /* points to the last timer cell */
  73. /*
  74.  * variables for allocation actions
  75.  */
  76. long total_payload ; /* Total Payload */
  77. long total_overhead ; /* Total Overhead */
  78. long sba_allocatable ; /* allocatable sync bandwidth */
  79. /*
  80.  * RAF message receive parameters
  81.  */
  82. long msg_path_index ; /* Path Type */
  83. long msg_sba_pl_req ; /* Payload Request */
  84. long msg_sba_ov_req ; /* Overhead Request */
  85. long msg_mib_pl ; /* Current Payload for this Path */
  86. long msg_mib_ov ; /* Current Overhead for this Path*/
  87. long msg_category ; /* Category of the Allocation */
  88. u_long msg_max_t_neg ; /* longest T_Neg acceptable */
  89. u_long msg_min_seg_siz ; /* minimum segement size */
  90. struct smt_header *sm ; /* points to the rec message */
  91. struct fddi_addr *msg_alloc_addr ; /* Allocation Address */
  92. /*
  93.  * SBA variables
  94.  */
  95. u_long sba_t_neg ; /* holds the last T_NEG */
  96. long sba_max_alloc ; /* the parsed value of SBAAvailable */
  97. /*
  98.  * SBA state machine variables
  99.  */
  100. short sba_next_state ; /* the next state of the SBA */
  101. char sba_command ; /* holds the execuded SBA cmd */
  102. u_char sba_available ; /* parsed value after possible check */
  103. } ;
  104. #endif /* SBA */
  105. /*
  106.  * variables for the End Station Support
  107.  */
  108. struct s_ess {
  109. /*
  110.  * flags and counters
  111.  */
  112. u_char sync_bw_available ; /* is set if sync bw is allocated */
  113. u_char local_sba_active ; /* set when a local sba is available */
  114. char raf_act_timer_poll ; /* activate the timer to send allc req */
  115. char timer_count ; /* counts every timer function call */
  116. SMbuf *sba_reply_pend ; /* local reply for the sba is pending */
  117. /*
  118.  * variables for the ess bandwidth control
  119.  */
  120. long sync_bw ; /* holds the allocaed sync bw */
  121. u_long alloc_trans_id ; /* trans id of the last alloc req */
  122. } ;
  123. #endif