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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1997, 1998 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. # Defaults for link-layer
  35. LL set bandwidth_ 0      ;# not used
  36. LL set delay_ 1ms
  37. LL set macDA_ 0
  38. LL/Sat/HDLC set window_size_ 8
  39. LL/Sat/HDLC set queue_size_ 1000
  40. LL/Sat/HDLC set timeout_ 0.26
  41. LL/Sat/HDLC set max_timeouts_ 2 ;# other values 3, 5, 50, 200 maybe set from user tcl script
  42. LL/Sat/HDLC set delAck_   false  ;# ack maybe delayed to allow piggybacking
  43. LL/Sat/HDLC set delAckVal_  0.1  ;# value chosen based on a link delay of 100ms
  44. LL/Sat/HDLC set selRepeat_ false ;# set to GoBackN by default
  45. if [TclObject is-class LL/Arq] {
  46. LL/Arq set mode_ 2
  47. LL/Arq set hlen_ 16
  48. LL/Arq set slen_ 1400
  49. LL/Arq set limit_ 8
  50. LL/Arq set timeout_ 100ms
  51. Class LL/Rlp -superclass LL/Arq
  52. LL/Rlp set mode_ 1
  53. LL/Rlp set hlen_ 6
  54. LL/Rlp set slen_ 30
  55. LL/Rlp set limit_ 63
  56. LL/Rlp set timeout_ 500ms
  57. LL/Rlp set delay_ 70ms
  58. }
  59. # Snoop variables
  60. if [TclObject is-class Snoop] {
  61. Snoop set snoopTick_ 0.1
  62. Snoop set snoopDisable_ 0
  63. Snoop set srtt_ 0.1
  64. Snoop set rttvar_ 0.25
  65. Snoop set g_ 0.125
  66. Snoop set tailTime_ 0
  67. Snoop set rxmitStatus_ 0
  68. Snoop set lru_ 0
  69. Snoop set maxbufs_ 0
  70. }
  71. if [TclObject is-class LL/LLSnoop] {
  72. LL/LLSnoop set integrate_ 0
  73. LL/LLSnoop set delay_ 0ms
  74. Snoop set srtt_ 0.1
  75. Snoop set rttvar_ 0.25
  76. Snoop set g_ 0.125
  77. LL/LLSnoop set snoopTick_ 0.1
  78. }
  79. # Get snoop agent (or else create one automatically
  80. LL/LLSnoop instproc get-snoop { src dst } {
  81. $self instvar snoops_ off_ll_ delay_
  82. if { ![info exists snoops_($src:$dst)] } {
  83. # make a new snoop agent if none exists
  84. # puts "making new snoop $src $dst"
  85. set snoops_($src:$dst) [new Snoop]
  86. }
  87. # make snoop's llsnoop_ ourself, and make it's recvtarget_ same as ours
  88. $snoops_($src:$dst) llsnoop $self
  89. $snoops_($src:$dst) set delay_ $delay_
  90. return $snoops_($src:$dst)
  91. }
  92. # Integrate snoop processing across concurrent active connections
  93. LL/LLSnoop instproc integrate { src dst } {
  94. $self instvar snoops_
  95. set conn $src:$dst
  96. if {![info exists snoops_($conn)]} {
  97. return
  98. }
  99. set snoop $snoops_($conn)
  100. set threshtime [$snoop set tailTime_]
  101. foreach a [array names snoops_] {
  102. # go through other conns checking for rxmit possibilities
  103. if { $a != $conn } {
  104. $snoops_($a) check-rxmit $threshtime
  105. if { [$snoops_($a) set rxmitStatus_] == 2 } {
  106. # We just did a retransmission, don't be
  107. # too aggressive on rxmissions.  This follows
  108. # standard conservation of packets.
  109. break;
  110. }
  111. }
  112. }
  113. }