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

通讯编程

开发平台:

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_rtable_h__
  26. #define __aodv_rtable_h__
  27. #include <assert.h>
  28. #include <sys/types.h>
  29. #include <config.h>
  30. #include <lib/bsd-list.h>
  31. #include <scheduler.h>
  32. #define CURRENT_TIME    Scheduler::instance().clock()
  33. #define INFINITY2        0xff
  34. /*
  35.    AODV Neighbor Cache Entry
  36. */
  37. class AODV_Neighbor {
  38.         friend class AODV;
  39.         friend class aodv_rt_entry;
  40.  public:
  41.         AODV_Neighbor(u_int32_t a) { nb_addr = a; }
  42.  protected:
  43.         LIST_ENTRY(AODV_Neighbor) nb_link;
  44.         nsaddr_t        nb_addr;
  45.         double          nb_expire;      // ALLOWED_HELLO_LOSS * HELLO_INTERVAL
  46. };
  47. LIST_HEAD(aodv_ncache, AODV_Neighbor);
  48. /*
  49.    AODV Precursor list data structure
  50. */
  51. class AODV_Precursor {
  52.         friend class AODV;
  53.         friend class aodv_rt_entry;
  54.  public:
  55.         AODV_Precursor(u_int32_t a) { pc_addr = a; }
  56.  protected:
  57.         LIST_ENTRY(AODV_Precursor) pc_link;
  58.         nsaddr_t        pc_addr; // precursor address
  59. };
  60. LIST_HEAD(aodv_precursors, AODV_Precursor);
  61. /*
  62.   Route Table Entry
  63. */
  64. class aodv_rt_entry {
  65.         friend class aodv_rtable;
  66.         friend class AODV;
  67. friend class LocalRepairTimer;
  68.  public:
  69.         aodv_rt_entry();
  70.         ~aodv_rt_entry();
  71.         void            nb_insert(nsaddr_t id);
  72.         AODV_Neighbor*  nb_lookup(nsaddr_t id);
  73.         void            pc_insert(nsaddr_t id);
  74.         AODV_Precursor* pc_lookup(nsaddr_t id);
  75.         void  pc_delete(nsaddr_t id);
  76.         void  pc_delete(void);
  77.         bool  pc_empty(void);
  78.         double          rt_req_timeout;         // when I can send another req
  79.         u_int8_t        rt_req_cnt;             // number of route requests
  80.  protected:
  81.         LIST_ENTRY(aodv_rt_entry) rt_link;
  82.         nsaddr_t        rt_dst;
  83.         u_int32_t       rt_seqno;
  84. /* u_int8_t  rt_interface; */
  85.         u_int16_t       rt_hops;        // hop count
  86. int  rt_last_hop_count; // last valid hop count
  87.         nsaddr_t        rt_nexthop;     // next hop IP address
  88. /* list of precursors */ 
  89.         aodv_precursors rt_pclist;
  90.         double          rt_expire;      // when entry expires
  91.         u_int8_t        rt_flags;
  92. #define RTF_DOWN 0
  93. #define RTF_UP 1
  94. #define RTF_IN_REPAIR 2
  95.         /*
  96.          *  Must receive 4 errors within 3 seconds in order to mark
  97.          *  the route down.
  98.         u_int8_t        rt_errors;      // error count
  99.         double          rt_error_time;
  100. #define MAX_RT_ERROR            4       // errors
  101. #define MAX_RT_ERROR_TIME       3       // seconds
  102.          */
  103. #define MAX_HISTORY 3
  104. double  rt_disc_latency[MAX_HISTORY];
  105. char  hist_indx;
  106.         int  rt_req_last_ttl;        // last ttl value used
  107. // last few route discovery latencies
  108. // double  rt_length [MAX_HISTORY];
  109. // last few route lengths
  110.         /*
  111.          * a list of neighbors that are using this route.
  112.          */
  113.         aodv_ncache          rt_nblist;
  114. };
  115. /*
  116.   The Routing Table
  117. */
  118. class aodv_rtable {
  119.  public:
  120. aodv_rtable() { LIST_INIT(&rthead); }
  121.         aodv_rt_entry*       head() { return rthead.lh_first; }
  122.         aodv_rt_entry*       rt_add(nsaddr_t id);
  123.         void                 rt_delete(nsaddr_t id);
  124.         aodv_rt_entry*       rt_lookup(nsaddr_t id);
  125.  private:
  126.         LIST_HEAD(aodv_rthead, aodv_rt_entry) rthead;
  127. };
  128. #endif /* _aodv__rtable_h__ */