tora_packet.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.  * basic formats, constants and datatypes for TORA pkts.
  37.  *
  38.  * $Header: /cvsroot/nsnam/ns-2/tora/tora_packet.h,v 1.3 2000/09/01 03:04:12 haoboy Exp $
  39.  */
  40. #ifndef __tora_packet_h__
  41. #define __tora_packet_h__
  42. #include "config.h"
  43. #include "packet.h"
  44. /*
  45.  * TORA Routing Protocol Header Macros
  46.  */
  47. #define HDR_TORA_QRY(p)   ((struct hdr_tora_qry*)hdr_tora::access(p))
  48. #define HDR_TORA_UPD(p)   ((struct hdr_tora_upd*)hdr_tora::access(p))
  49. #define HDR_TORA_CLR(p)   ((struct hdr_tora_clr*)hdr_tora::access(p))
  50. // why do we have Height defined here?  seems like there oughta be a better
  51. // place. -dam 9/30/98
  52. class Height {
  53. public:
  54. Height(int ID) : tau(-1.0), oid(-1), r(-1), delta(-1), id(ID) {}
  55. /*
  56.  * Status Functions.
  57.  */
  58. inline int isZero() {
  59. return (tau == 0.0 && oid == 0 && r == 0 && delta == 0);
  60. }
  61. inline int isNull() {
  62. return (tau == -1.0 && oid == -1 && r == -1 && delta == -1);
  63. }
  64. inline int compare(Height *h) {
  65. if(h->tau > tau) return 1;     if(tau > h->tau) return -1;
  66. if(h->oid > oid) return 1;     if(oid > h->oid) return -1;
  67. if(h->r > r) return 1;         if(r > h->r) return -1;
  68. if(h->delta > delta) return 1; if(delta > h->delta) return -1;
  69. if(h->id > id) return 1;       if(id > h->id) return -1;
  70. return 0;               // heights equal
  71. }
  72. /*
  73.  * Update Functions
  74.  */
  75. inline void Zero() { tau = 0.0; oid = 0; r = 0; delta = 0; }
  76. inline void Null() { tau = -1.0; oid = -1; r = -1; delta = -1; }
  77. void update(Height *h)
  78. {
  79. tau = h->tau; oid = h->oid; r = h->r;
  80. delta = h->delta; id = h->id;
  81. }
  82. double tau; // Time the reference level was created
  83. nsaddr_t oid; // id of the router that created the ref level
  84. int r; // Flag indicating a reflected ref level
  85. int delta; // Value used in propagation of a ref level
  86. nsaddr_t id; // Unique id of the router
  87. };
  88. /* ======================================================================
  89.    Packet Formats
  90.    ====================================================================== */
  91. #define TORA_HDR_LEN            32
  92. #define TORATYPE_QRY 0x01
  93. #define TORATYPE_UPD 0x02
  94. #define TORATYPE_CLR 0x04
  95. #define QRY_HDR_LEN (IP_HDR_LEN + sizeof(struct hdr_tora_qry))
  96. #define UPD_HDR_LEN (IP_HDR_LEN + sizeof(struct hdr_tora_upd))
  97. #define CLR_HDR_LEN (IP_HDR_LEN + sizeof(struct hdr_tora_clr))
  98. /*
  99.  * General TORA Header - shared by all formats
  100.  */
  101. struct hdr_tora {
  102.         u_int16_t       th_type;
  103. u_int16_t reserved;
  104.         nsaddr_t        th_dst;
  105. // Header access methods
  106. static int offset_; // required by PacketHeaderManager
  107. inline static int& offset() { return offset_; }
  108. inline static hdr_tora* access(const Packet* p) {
  109. return (hdr_tora*) p->access(offset_);
  110. }
  111. };
  112. struct hdr_tora_qry {
  113. u_int16_t tq_type;
  114. u_int16_t reserved;
  115. nsaddr_t tq_dst;
  116. };
  117. struct hdr_tora_upd {
  118. u_int16_t tu_type;
  119. u_int16_t reserved;
  120. nsaddr_t tu_dst;
  121. double tu_tau;
  122. nsaddr_t tu_oid;
  123. int tu_r;
  124. int tu_delta;
  125. nsaddr_t tu_id;
  126. };
  127. struct hdr_tora_clr {
  128. u_int16_t tc_type;
  129. u_int16_t reserved;
  130. nsaddr_t tc_dst;
  131. double tc_tau;
  132. int tc_oid;
  133. };
  134. #endif /* __tora_packet_h__ */