ns-mac.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1997 Regents of the University of California.
  3. # All rights reserved.
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. # 1. Redistributions of source code must retain the above copyright
  8. #    notice, this list of conditions and the following disclaimer.
  9. # 2. Redistributions in binary form must reproduce the above copyright
  10. #    notice, this list of conditions and the following disclaimer in the
  11. #    documentation and/or other materials provided with the distribution.
  12. # 3. All advertising materials mentioning features or use of this software
  13. #    must display the following acknowledgement:
  14. #  This product includes software developed by the Daedalus Research
  15. #       Group at the University of California, Berkeley.
  16. # 4. Neither the name of the University nor of the research group
  17. #    may be used to endorse or promote products derived from this software 
  18. #    without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. # SUCH DAMAGE.
  31. #
  32. # Contributed by the Daedalus Research Group, http://daedalus.cs.berkeley.edu
  33. #
  34. #default channel propagation delay (for a LAN)
  35. Channel set delay_ 4us
  36. Classifier/Mac set bcast_ 0
  37. #default bandwidth setting done during mac initialisation (c++)
  38. Mac set bandwidth_ 2Mb
  39. Mac set delay_ 0us
  40. Mac/Simple set fullduplex_mode_ 0
  41. # IEEE 802.11 MAC settings
  42. if [TclObject is-class Mac/802_11] {
  43. Mac/802_11 set delay_ 64us
  44. Mac/802_11 set ifs_ 16us
  45. Mac/802_11 set slotTime_ 16us
  46. Mac/802_11 set cwmin_ 16
  47. Mac/802_11 set cwmax_ 1024
  48. Mac/802_11 set rtxLimit_ 16
  49. Mac/802_11 set bssId_ -1
  50. Mac/802_11 set sifs_ 8us
  51. Mac/802_11 set pifs_ 12us
  52. Mac/802_11 set difs_ 16us
  53. Mac/802_11 set rtxAckLimit_ 1
  54. Mac/802_11 set rtxRtsLimit_ 3
  55.         Mac/802_11 set basicRate_ 1Mb  ;# set this to 0 if want to use bandwidth_ for 
  56.         Mac/802_11 set dataRate_ 1Mb   ;# both control and data pkts
  57. }
  58. # IEEE 802.14 MAC settings
  59. if [TclObject is-class Mac/Mcns] {
  60. Mac/Mcns set bandwidth_ 10Mb
  61. Mac/Mcns set hlen_ 6
  62. Mac/Mcns set bssId_ -1
  63. Mac/Mcns set slotTime_ 10us
  64. }
  65. # Multihop wireless MAC modeled after Metricom's Ricochet
  66. if [TclObject is-class Mac/Multihop] {
  67. Mac/Multihop set bandwidth_ 100Kb
  68. Mac/Multihop set delay_ 10ms
  69. Mac/Multihop set tx_rx_ 11.125ms
  70. Mac/Multihop set rx_tx_ 13.25ms
  71. Mac/Multihop set rx_rx_ 10.5625
  72. Mac/Multihop set backoffBase_ 20ms
  73. Mac/Multihop set hlen_ 16
  74. }
  75. # The MAC classifier (to demux incoming packets to the correct LL object)
  76. Mac instproc classify-macs {peerinfo} {
  77. set peerlabel [lindex $peerinfo 0]
  78. set peerll [lindex $peerinfo 1]
  79. $self instvar mclass_
  80. set mclass_ [new Classifier/Mac]
  81. $mclass_ install $peerlabel $peerll
  82. $self target $mclass_
  83. }
  84. # XXX this belongs in ns-node.tcl
  85. # Hook up the MACs together at a given Node
  86. Node instproc addmac {mac} { 
  87. $self instvar machead_ mactail_
  88. if ![info exists mactail_] {
  89. set mactail_ [set machead_ $mac]
  90. $mac maclist $mactail_
  91. } else {
  92. $mactail_ maclist $mac
  93. $mac maclist $machead_
  94. set mactail_ $mac
  95. }
  96. }