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

通讯编程

开发平台:

Visual C++

  1. // -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
  2. /*
  3.  * addr-params.h
  4.  * Copyright (C) 2000 by the University of Southern California
  5.  * $Id: addr-params.h,v 1.4 2005/08/25 18:58:12 johnh Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. //
  47. // Address parameters. Singleton class
  48. //
  49. // $Header: /cvsroot/nsnam/ns-2/routing/addr-params.h,v 1.4 2005/08/25 18:58:12 johnh Exp $
  50. #ifndef ns_addr_params_h
  51. #define ns_addr_params_h
  52. #include <tclcl.h>
  53. class AddrParamsClass : public TclClass{
  54. public:
  55. // XXX Default hlevel_ to 1.
  56. AddrParamsClass() : TclClass("AddrParams"),
  57.     hlevel_(1), NodeMask_(NULL), 
  58.     NodeShift_(NULL) {
  59. instance_ = this;
  60. }
  61. virtual TclObject* create(int, const char*const*) {
  62. Tcl::instance().add_errorf("Cannot create instance of "
  63.    "AddrParamsClass");
  64. return NULL;
  65. }
  66. virtual void bind();
  67. virtual int method(int ac, const char*const* av);
  68. static inline AddrParamsClass& instance() { return *instance_; }
  69. inline int mcast_shift() { return McastShift_; }
  70. inline int mcast_mask() { return McastMask_; }
  71. inline int port_shift() { return PortShift_; }
  72. inline int port_mask() { return PortMask_; }
  73. inline int node_shift(int n) { return NodeShift_[n]; }
  74. inline int node_mask(int n) { return NodeMask_[n]; }
  75. inline int hlevel() { return hlevel_; }
  76. inline int nodebits() { return nodebits_; }
  77. private:
  78. int McastShift_;
  79. int McastMask_;
  80. int PortShift_;
  81. int PortMask_;
  82. int hlevel_;
  83. int *NodeMask_;
  84. int *NodeShift_;
  85. int nodebits_;
  86. static AddrParamsClass *instance_;
  87. };
  88. #endif // ns_addr_params_h