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

通讯编程

开发平台:

Visual C++

  1. /* The AODV code developed by the CMU/MONARCH group was optimized
  2.  * and tuned by Samir Das (UTSA) and Mahesh Marina (UTSA). The 
  3.  * work was partially done in Sun Microsystems.
  4.  * 
  5.  * The original CMU copyright is below. 
  6.  */
  7. /*
  8. Copyright (c) 1997, 1998 Carnegie Mellon University.  All Rights
  9. Reserved. 
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions are met:
  12. 1. Redistributions of source code must retain the above copyright notice,
  13. this list of conditions and the following disclaimer.
  14. 2. Redistributions in binary form must reproduce the above copyright notice,
  15. this list of conditions and the following disclaimer in the documentation
  16. and/or other materials provided with the distribution.
  17. 3. The name of the author may not be used to endorse or promote products
  18. derived from this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  20. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  21. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  22. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  25. OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  26. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  28. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. /* Ported into VINT ns by Ya Xu, Sept. 1999 */
  31. #ifndef __rtable_h__
  32. #define __rtable_h__
  33. #include <assert.h>
  34. #include <sys/types.h>
  35. #include "config.h"
  36. #include "scheduler.h"
  37. #include "lib/bsd-list.h"
  38. #define CURRENT_TIME    Scheduler::instance().clock()
  39. #define INFINITY2        0xff
  40. /* =====================================================================
  41.    Neighbor Cache Entry
  42.    ===================================================================== */
  43. class Neighbor {
  44.         friend class AODV;
  45.         friend class rt_entry;
  46.  public:
  47.         Neighbor(u_int32_t a) { nb_addr = a; }
  48.  protected:
  49.         LIST_ENTRY(Neighbor) nb_link;
  50.         nsaddr_t        nb_addr;
  51.         double          nb_expire;      // ALLOWED_HELLO_LOSS * HELLO_INTERVAL
  52. };
  53. LIST_HEAD(ncache, Neighbor);
  54. /* =====================================================================
  55.    Route Table Entry
  56.    ===================================================================== */
  57. class rt_entry {
  58.         friend class rttable;
  59.         friend class AODV;
  60. friend class LocalRepairTimer;
  61.  public:
  62.         rt_entry();
  63.         ~rt_entry();
  64.         void            nb_insert(nsaddr_t id);
  65.         Neighbor*       nb_lookup(nsaddr_t id);
  66.  protected:
  67.         LIST_ENTRY(rt_entry) rt_link;
  68.         nsaddr_t        rt_dst;
  69.         u_int32_t       rt_seqno;
  70.         nsaddr_t        rt_nexthop;     // next hop IP address
  71.         double          rt_expire;      // when entry expires
  72.         u_int16_t       rt_hops;        // hop count
  73.         u_int8_t        rt_flags;
  74. #define RTF_DOWN 0
  75. #define RTF_UP 1
  76. #define RTF_IN_REPAIR 2
  77.         /*
  78.          *  Must receive 4 errors within 3 seconds in order to mark
  79.          *  the route down.
  80.          */
  81.         u_int8_t        rt_errors;      // error count
  82.         double          rt_error_time;
  83. #define MAX_RT_ERROR            4       // errors
  84. #define MAX_RT_ERROR_TIME       3       // seconds
  85.         double          rt_req_timeout;         // when I can send another req
  86.         u_int8_t        rt_req_cnt;             // number of route requests
  87.         int  rt_req_last_ttl;        // last ttl value used
  88. #define MAX_HISTORY 3
  89. double  rt_disc_latency[MAX_HISTORY];
  90. char  hist_indx;
  91. // last few route discovery latencies
  92. // double  rt_length [MAX_HISTORY];
  93. // last few route lengths
  94.         /*
  95.          * a list of neighbors that are using this route.
  96.          */
  97.         ncache          rt_nblist;
  98. // Mahesh - 09/11/99
  99. // This counter indicates whether route replies are sent back
  100. // for this destination, If so, how many?
  101. int error_propagate_counter;
  102. };
  103. /* =====================================================================
  104.    The Routing Table
  105.    ===================================================================== */
  106. class rttable {
  107.  public:
  108. rttable() { LIST_INIT(&rthead); }
  109.         rt_entry*       head() { return rthead.lh_first; }
  110.         rt_entry*       rt_lookup(nsaddr_t id);
  111.         void            rt_delete(nsaddr_t id);
  112.         rt_entry*       rt_add(nsaddr_t id);
  113.  private:
  114.         LIST_HEAD(ncache, rt_entry) rthead;
  115. };
  116. #endif /* __rtable_h__ */