sa.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.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2 of the License, or (at your
  8.  * option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * Linking this file statically or dynamically with other modules is making
  20.  * a combined work based on this file.  Thus, the terms and conditions of
  21.  * the GNU General Public License cover the whole combination.
  22.  *
  23.  * In addition, as a special exception, the copyright holders of this file
  24.  * give you permission to combine this file with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code included in
  26.  * the standard release of ns-2 under the Apache 2.0 license or under
  27.  * otherwise-compatible licenses with advertising requirements (or modified
  28.  * versions of such code, with unchanged license).  You may copy and
  29.  * distribute such a system following the terms of the GNU GPL for this
  30.  * file and the licenses of the other code concerned, provided that you
  31.  * include the source code of that other code when and as the GNU GPL
  32.  * requires distribution of source code.
  33.  *
  34.  * Note that people who make modified versions of this file are not
  35.  * obligated to grant this special exception for their modified versions;
  36.  * it is their choice whether to do so.  The GNU General Public License
  37.  * gives permission to release a modified version without this exception;
  38.  * this exception also makes it possible to release a modified version
  39.  * which carries forward this exception.
  40.  */
  41. #ifndef ns_sa_h
  42. #define ns_sa_h
  43. #include "resv.h"
  44. #include "agent.h"
  45. #include "timer-handler.h"
  46. #include "trafgen.h"
  47. #include "rtp.h"
  48. #include "random.h"
  49. class SA_Agent;
  50. class SA_Timer : public TimerHandler {
  51. public:
  52.         SA_Timer(SA_Agent *a) : TimerHandler() { a_ = a; }
  53. protected:
  54.         virtual void expire(Event *e);
  55.         SA_Agent *a_;
  56. };
  57. class SA_Agent : public Agent {
  58. public:
  59. SA_Agent();
  60. ~SA_Agent();
  61. int command(int, const char*const*);
  62. virtual void timeout(int);
  63. virtual void sendmsg(int nbytes, const char *flags = 0);
  64. protected:
  65. void start(); 
  66. void stop(); 
  67. void sendreq();
  68. void sendteardown();
  69. void recv(Packet *, Handler *);
  70.         void stoponidle(const char *);
  71. virtual void sendpkt();
  72. double rate_;
  73. int bucket_;
  74. NsObject* ctrl_target_;
  75.         TrafficGenerator *trafgen_;
  76.         int rtd_;  /* ready-to-die: waiting for last burst to end */
  77. char* callback_;
  78. SA_Timer sa_timer_;
  79. double nextPkttime_;
  80. int running_;
  81. int seqno_;
  82. int size_;
  83. };
  84. #endif