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

通讯编程

开发平台:

Visual C++

  1. /* -*-  Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 1997 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  *      This product includes software developed by the Computer Systems
  17.  *      Engineering Group at Lawrence Berkeley Laboratory.
  18.  * 4. Neither the name of the University nor of the Laboratory may be used
  19.  *    to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * Ported from CMU/Monarch's code 
  35.  *
  36.  * $Header: /cvsroot/nsnam/ns-2/tora/tora.h,v 1.5 2000/09/01 03:04:12 haoboy Exp $
  37.  */
  38. #ifndef __tora_h__
  39. #define __tora_h__
  40. #include <packet.h>
  41. #include <ip.h>
  42. #include <cmu-trace.h>
  43. #include <priqueue.h>
  44. #include <rtqueue.h>
  45. #include "lib/bsd-list.h"
  46. #include <rtproto/rtproto.h>
  47. #include <imep/imep.h>
  48. #include <tora/tora_packet.h>
  49. #include <tora/tora_neighbor.h>
  50. #include <tora/tora_dest.h>
  51. LIST_HEAD(td_head, TORADest);
  52. //#define LOGGING
  53. typedef double Time;
  54. /*
  55.  *  Causes TORA to discard any packets that have "looped".
  56.  */
  57. #define TORA_DISALLOW_ROUTE_LOOP
  58. #define MinQueryRate 0.200 // seconds
  59. // used to rate limit queries
  60. class TORANeighbor;
  61. class TORADest;
  62. class Height;
  63. class toraAgent : public rtAgent {
  64.         friend class TORANeighbor;
  65.         friend class TORADest;
  66. public:
  67.         toraAgent(nsaddr_t id);
  68.         void recv(Packet* p, Handler*);
  69.         int command(int argc, const char*const* argv);
  70. // ============================================================
  71. // Routing API (see cmu/rtproto/rtproto.h)
  72. void rtNotifyLinkUP(nsaddr_t index);
  73. void rtNotifyLinkDN(nsaddr_t index);
  74. void rtNotifyLinkStatus(nsaddr_t index, u_int32_t status);
  75. void rtRoutePacket(Packet *p);
  76. // ============================================================
  77. private:
  78.         nsaddr_t        index;  // added for line 78 of tora.cc, needed for
  79.                                 // further verification
  80. TORADest* dst_find(nsaddr_t id);
  81. TORADest* dst_add(nsaddr_t id);
  82. void dst_dump(void);
  83. void rt_resolve(Packet *p);
  84.         void            forward(Packet *p, nsaddr_t nexthop, Time delay = 0.0);
  85. void purge_queue(void);
  86. void enque(TORADest *td, Packet *p);
  87. Packet* deque(TORADest *td);
  88. /*
  89.  * Incoming Packets
  90.  */
  91.         void recvTORA(Packet* p);
  92. void recvQRY(Packet *p);
  93. void recvUPD(Packet *p);
  94. void recvCLR(Packet *p);
  95. /*
  96.  *  Outgoing Packets
  97.  */
  98. void sendQRY(nsaddr_t id);
  99. void sendUPD(nsaddr_t id);
  100. void sendCLR(nsaddr_t id, double tau, nsaddr_t oid);
  101. void tora_output(Packet *p);
  102. // ============================================================
  103. // ============================================================
  104. inline int initialized() {
  105.  return logtarget && ifqueue && imepagent;
  106. }
  107. td_head dstlist; // Active destinations
  108. imepAgent *imepagent;
  109. // a handle to the IMEP layer
  110. /*
  111.  * A mechanism for logging the contents of the routing
  112.  * table.
  113.  */
  114. Trace *logtarget;
  115. void trace(char* fmt, ...);
  116. virtual void reset();
  117.         /*
  118.          *  A "drop-front" queue used by the routing layer to buffer
  119.          *  packets to which it does not have a route.
  120.          */
  121.         rtqueue        rqueue;
  122. /*
  123.  * A pointer to the network interface queue that sits
  124.  * between the "classifier" and the "link layer".
  125.  */
  126. PriQueue *ifqueue;
  127.         /*
  128.          * Logging Routines
  129.          */
  130. void log_route_loop(nsaddr_t prev, nsaddr_t next);
  131. void log_link_layer_feedback(Packet *p);
  132.         void            log_link_layer_recycle(Packet *p);
  133.         void            log_lnk_del(nsaddr_t dst);
  134.         void            log_lnk_kept(nsaddr_t dst);
  135.         void            log_nb_del(nsaddr_t dst, nsaddr_t id);
  136. void log_recv_qry(Packet *p);
  137. void log_recv_upd(Packet *p);
  138. void log_recv_clr(Packet *p);
  139. void log_route_table(void);
  140.         void            log_dst_state_change(TORADest *td);
  141. void logNextHopChange(TORADest *td);
  142. void logNbDeletedLastDN(TORADest *td);
  143. void logToraDest(TORADest *td);
  144. void logToraNeighbor(TORANeighbor *tn);
  145. };
  146. #endif /* __tora_h__ */