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

通讯编程

开发平台:

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.   $Id: tora_io.cc,v 1.4 1999/10/13 22:53:11 heideman Exp $
  37.   
  38.   marshall TORA packets 
  39.   */
  40. #include <tora/tora_packet.h>
  41. #include <tora/tora.h>
  42. /* ======================================================================
  43.    Outgoing Packets
  44.    ====================================================================== */
  45. void
  46. toraAgent::sendQRY(nsaddr_t id)
  47. {
  48. Packet *p = Packet::alloc();
  49. struct hdr_cmn *ch = HDR_CMN(p);
  50. struct hdr_ip *ih = HDR_IP(p);
  51. struct hdr_tora_qry *th = HDR_TORA_QRY(p);
  52. ch->uid() = uidcnt_++;
  53. ch->ptype() = PT_TORA;
  54. ch->size() = QRY_HDR_LEN;
  55. ch->iface() = -2;
  56. ch->error() = 0;
  57. ch->addr_type() = NS_AF_NONE;
  58.         ch->prev_hop_ = ipaddr();
  59. ih->saddr() = ipaddr();
  60. ih->daddr() = IP_BROADCAST;
  61. ih->sport() = RT_PORT;
  62. ih->dport() = RT_PORT;
  63. ih->ttl_ = 1;
  64. th->tq_type = TORATYPE_QRY;
  65. th->tq_dst = id;
  66. trace("T %.9f _%d_ tora sendQRY %d",
  67.       Scheduler::instance().clock(), ipaddr(), id);
  68. tora_output(p);
  69. }
  70. void
  71. toraAgent::sendUPD(nsaddr_t id)
  72. {
  73. Packet *p = Packet::alloc();
  74. struct hdr_cmn *ch = HDR_CMN(p);
  75. struct hdr_ip *ih = HDR_IP(p);
  76. struct hdr_tora_upd *th = HDR_TORA_UPD(p);
  77. TORADest *td;
  78. td = dst_find(id);
  79. assert(td);
  80. ch->uid() = uidcnt_++;
  81. ch->ptype() = PT_TORA;
  82. ch->size() = UPD_HDR_LEN;
  83. ch->iface() = -2;
  84. ch->error() = 0;
  85. ch->addr_type() = NS_AF_NONE;
  86.         ch->prev_hop_ = ipaddr();
  87. ih->saddr() = ipaddr();
  88. ih->daddr() = IP_BROADCAST;
  89. ih->sport() = RT_PORT;
  90. ih->dport() = RT_PORT;
  91. ih->ttl_ = 1;
  92. th->tu_type = TORATYPE_UPD;
  93. th->tu_dst = id;
  94. th->tu_tau = td->height.tau;
  95. th->tu_oid = td->height.oid;
  96. th->tu_r = td->height.r;
  97. th->tu_delta = td->height.delta;
  98. th->tu_id = td->height.id;
  99. tora_output(p);
  100. }
  101. void
  102. toraAgent::sendCLR(nsaddr_t id, double tau, nsaddr_t oid)
  103. {
  104. Packet *p = Packet::alloc();
  105. struct hdr_cmn *ch = HDR_CMN(p);
  106. struct hdr_ip *ih = HDR_IP(p);
  107. struct hdr_tora_clr *th = HDR_TORA_CLR(p);
  108. ch->uid() = uidcnt_++;
  109. ch->ptype() = PT_TORA;
  110. ch->size() = CLR_HDR_LEN;
  111. ch->iface() = -2;
  112. ch->error() = 0;
  113. ch->addr_type() = NS_AF_NONE;
  114.         ch->prev_hop_ = ipaddr();
  115. ih->saddr() = ipaddr();
  116. ih->daddr() = IP_BROADCAST;
  117. ih->sport() = RT_PORT;
  118. ih->dport() = RT_PORT;
  119. ih->ttl_ = 1;
  120. th->tc_type = TORATYPE_CLR;
  121. th->tc_dst = id;
  122. th->tc_tau = tau;
  123. th->tc_oid = oid;
  124. tora_output(p);
  125. }
  126. void
  127. toraAgent::tora_output(Packet *p)
  128. {
  129. target_->recv(p, (Handler*) 0);
  130. }