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

通讯编程

开发平台:

Visual C++

  1. /*
  2. Copyright (c) 1997, 1998 Carnegie Mellon University.  All Rights
  3. Reserved. 
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. 1. Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form must reproduce the above copyright notice,
  9. this list of conditions and the following disclaimer in the documentation
  10. and/or other materials provided with the distribution.
  11. 3. The name of the author may not be used to endorse or promote products
  12. derived from this software without specific prior written permission.
  13. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  14. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  15. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  16. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  18. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  19. OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  20. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  21. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  22. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. The AODV code developed by the CMU/MONARCH group was optimized and tuned by Samir Das and Mahesh Marina, University of Cincinnati. The work was partially done in Sun Microsystems. 
  24. */
  25. #ifndef __aodv_rqueue_h__
  26. #define __aodv_rqueue_h_
  27. //#include <packet.h>
  28. #include <ip.h>
  29. #include <agent.h>
  30. /*
  31.  * The maximum number of packets that we allow a routing protocol to buffer.
  32.  */
  33. #define AODV_RTQ_MAX_LEN     64      // packets
  34. /*
  35.  *  The maximum period of time that a routing protocol is allowed to buffer
  36.  *  a packet for.
  37.  */
  38. #define AODV_RTQ_TIMEOUT     30 // seconds
  39. class aodv_rqueue : public Connector {
  40.  public:
  41.         aodv_rqueue();
  42.         void            recv(Packet *, Handler*) { abort(); }
  43.         void            enque(Packet *p);
  44. inline int      command(int argc, const char * const* argv) 
  45.   { return Connector::command(argc, argv); }
  46.         /*
  47.          *  Returns a packet from the head of the queue.
  48.          */
  49.         Packet*         deque(void);
  50.         /*
  51.          * Returns a packet for destination "D".
  52.          */
  53.         Packet*         deque(nsaddr_t dst);
  54.   /*
  55.    * Finds whether a packet with destination dst exists in the queue
  56.    */
  57.         char            find(nsaddr_t dst);
  58.  private:
  59.         Packet*         remove_head();
  60.         void            purge(void);
  61. void findPacketWithDst(nsaddr_t dst, Packet*& p, Packet*& prev);
  62. bool  findAgedPacket(Packet*& p, Packet*& prev); 
  63. void verifyQueue(void);
  64.         Packet          *head_;
  65.         Packet          *tail_;
  66.         int             len_;
  67.         int             limit_;
  68.         double          timeout_;
  69. };
  70. #endif /* __aodv_rqueue_h__ */