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

通讯编程

开发平台:

Visual C++

  1. #  Copyright (c) 1997 by the University of Southern California
  2. #  All rights reserved.
  3. #  This program is free software; you can redistribute it and/or
  4. #  modify it under the terms of the GNU General Public License,
  5. #  version 2, as published by the Free Software Foundation.
  6. #
  7. #  This program is distributed in the hope that it will be useful,
  8. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. #  GNU General Public License for more details.
  11. #
  12. #  You should have received a copy of the GNU General Public License along
  13. #  with this program; if not, write to the Free Software Foundation, Inc.,
  14. #  59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  15. #
  16. #  The copyright of this module includes the following
  17. #  linking-with-specific-other-licenses addition:
  18. #
  19. #  In addition, as a special exception, the copyright holders of
  20. #  this module give you permission to combine (via static or
  21. #  dynamic linking) this module with free software programs or
  22. #  libraries that are released under the GNU LGPL and with code
  23. #  included in the standard release of ns-2 under the Apache 2.0
  24. #  license or under otherwise-compatible licenses with advertising
  25. #  requirements (or modified versions of such code, with unchanged
  26. #  license).  You may copy and distribute such a system following the
  27. #  terms of the GNU GPL for this module and the licenses of the
  28. #  other code concerned, provided that you include the source code of
  29. #  that other code when and as the GNU GPL requires distribution of
  30. #  source code.
  31. #
  32. #  Note that people who make modified versions of this module
  33. #  are not obligated to grant this special exception for their
  34. #  modified versions; it is their choice whether to do so.  The GNU
  35. #  General Public License gives permission to release a modified
  36. #  version without this exception; this exception also makes it
  37. #  possible to release a modified version which carries forward this
  38. #  exception.
  39. # Author: Kannan Varadhan <kannan@isi.edu>
  40. # Version Date: Mon Jun 30 15:51:33 PDT 1997
  41. #
  42. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/mcast/srm-nam.tcl,v 1.3 2005/09/16 03:05:44 tomh Exp $ (USC/ISI)
  43. #
  44. if ![info exists ctrlFid] {
  45.     set ctrlFid 39
  46. }
  47. set sessFid [incr ctrlFid]
  48. set rqstFid [incr ctrlFid]
  49. set reprFid [incr ctrlFid]
  50. Agent/SRM instproc send {type args} {
  51. #    eval $self evTrace $proc $type $args
  52.     global sessFid rqstFid reprFid
  53.     set fid [$self set fid_]
  54.     switch $type {
  55.     session { $self set fid_ $sessFid }
  56.     request { $self set fid_ $rqstFid }
  57.     repair { $self set fid_ $reprFid }
  58.     }
  59.     eval $self cmd send $type $args
  60.     $self set fid_ $fid
  61. }