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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 2001 by USC/ISI
  3. # All rights reserved.                                            
  4. #                                                                
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation, advertising
  8. # materials, and other materials related to such distribution and use
  9. # acknowledge that the software was developed by the University of
  10. # Southern California, Information Sciences Institute.  The name of the
  11. # University may not be used to endorse or promote products derived from
  12. # this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  14. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  15. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/tcpapp.tcl,v 1.1 2001/11/08 19:43:43 buchheim Exp $ (USC/ISI)
  17. #  This is a simple demonstration of how to use the TcpApp application
  18. #  to send data over a TCP connection.
  19. set namfile out.nam
  20. set tracefile out.tr
  21. set ns [new Simulator]
  22. # open trace files and enable tracing
  23. set nf [open $namfile w]
  24. $ns namtrace-all $nf
  25. set f [open $tracefile w]
  26. $ns trace-all $f
  27. # create two nodes
  28. set n0 [$ns node]
  29. set n1 [$ns node]
  30. $ns duplex-link $n0 $n1 2Mb 5ms DropTail
  31. $ns duplex-link-op $n0 $n1 orient right
  32. # create FullTcp agents for the nodes
  33. # TcpApp needs a two-way implementation of TCP
  34. set tcp0 [new Agent/TCP/FullTcp]
  35. set tcp1 [new Agent/TCP/FullTcp]
  36. $ns attach-agent $n0 $tcp0
  37. $ns attach-agent $n1 $tcp1
  38. $ns connect $tcp0 $tcp1
  39. $tcp1 listen
  40. # set up TcpApp
  41. set app0 [new Application/TcpApp $tcp0]
  42. set app1 [new Application/TcpApp $tcp1]
  43. $app0 connect $app1
  44. # install a procedure to print out the received data
  45. Application/TcpApp instproc recv {data} {
  46. global ns
  47. $ns trace-annotate "$self received data "$data""
  48. }
  49. proc finish {} {
  50. global ns nf f namfile
  51. $ns flush-trace
  52. close $nf
  53. close $f
  54. puts "running nam..."
  55. exec nam $namfile &
  56. exit 0
  57. }
  58. # send a message via TcpApp
  59. # The string will be interpreted by the receiver as Tcl code.
  60. $ns at 0.5 "$app0 send 100 {$app1 recv {my mesage}}"
  61. $ns at 1.0 "finish"
  62. $ns run