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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2004-2005 by the University of Southern California
  3.  * $Id: diffagent.h,v 1.12 2005/09/13 20:47:34 johnh Exp $
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License,
  7.  * version 2, as published by the Free Software Foundation.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  17.  *
  18.  *
  19.  * The copyright of this module includes the following
  20.  * linking-with-specific-other-licenses addition:
  21.  *
  22.  * In addition, as a special exception, the copyright holders of
  23.  * this module give you permission to combine (via static or
  24.  * dynamic linking) this module with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code
  26.  * included in the standard release of ns-2 under the Apache 2.0
  27.  * license or under otherwise-compatible licenses with advertising
  28.  * requirements (or modified versions of such code, with unchanged
  29.  * license).  You may copy and distribute such a system following the
  30.  * terms of the GNU GPL for this module and the licenses of the
  31.  * other code concerned, provided that you include the source code of
  32.  * that other code when and as the GNU GPL requires distribution of
  33.  * source code.
  34.  *
  35.  * Note that people who make modified versions of this module
  36.  * are not obligated to grant this special exception for their
  37.  * modified versions; it is their choice whether to do so.  The GNU
  38.  * General Public License gives permission to release a modified
  39.  * version without this exception; this exception also makes it
  40.  * possible to release a modified version which carries forward this
  41.  * exception.
  42.  *
  43.  */
  44. // DiffAppAgent - Wrapper Class for diffusion transport agent DR, ported from SCADDS's directed diffusion software. --Padma, nov 2001.  
  45. #ifdef NS_DIFFUSION
  46. #ifndef NS_DIFFAGENT
  47. #define NS_DIFFAGENT
  48. #include <stdlib.h>
  49. #include <tclcl.h>
  50. #include <agent.h>
  51. #include <flags.h>
  52. #include <mobilenode.h>
  53. #include <dr.hh>
  54. class DiffAppAgent;
  55. class NsLocal : public DiffusionIO {
  56. public:
  57. NsLocal(DiffAppAgent *agent) { agent_ = agent;}
  58. ~NsLocal() {};
  59. DiffPacket recvPacket(int fd);
  60. void sendPacket(DiffPacket p, int len, int dst);
  61. protected:
  62. DiffAppAgent *agent_;
  63. };
  64. class DiffAppAgent : public Agent {
  65. public:
  66.   
  67. DiffAppAgent();
  68. int command(int argc, const char*const* argv);
  69. void initpkt(Packet *p, Message* msg, int len);
  70. Packet* createNsPkt(Message *msg, int len);
  71. void recv(Packet*, Handler*);
  72. void sendPacket(DiffPacket msg, int len, int dst);
  73. NR *dr() {return dr_; }
  74.   
  75. protected:
  76. // diffusion transport agent or DR
  77. NR *dr_;
  78. };
  79. #endif //diffagent
  80. #endif // NS