imep_io.cc
上传用户: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.   imep_io.cc
  37.   $Id: imep_io.cc,v 1.4 1999/10/13 22:53:06 heideman Exp $
  38.   marshall IMEP packets 
  39. */
  40. #include <random.h>
  41. #include <packet.h>
  42. #include <imep/imep.h>
  43. // ======================================================================
  44. // ======================================================================
  45. // Outgoing Packets
  46. void
  47. imepAgent::sendBeacon()
  48. {
  49. Packet *p = Packet::alloc();
  50. struct hdr_cmn *ch = HDR_CMN(p);
  51. struct hdr_ip *ih = HDR_IP(p);
  52. struct hdr_imep *im = HDR_IMEP(p);
  53. ch->ptype() = PT_IMEP;
  54. ch->size() = BEACON_HDR_LEN;
  55. ch->iface() = -2;
  56. ch->error() = 0;
  57. ch->addr_type() = NS_AF_NONE;
  58.         ch->prev_hop_ = ipaddr;
  59. ch->uid() = uidcnt_++;
  60. ih->saddr() = ipaddr;
  61. ih->daddr() = IP_BROADCAST;
  62. ih->sport() = RT_PORT;
  63. ih->dport() = RT_PORT;
  64. ih->ttl_ = 1;
  65. im->imep_version = IMEP_VERSION;
  66. im->imep_block_flags = 0x00;
  67. U_INT16_T(im->imep_length) = sizeof(struct hdr_imep);
  68. imep_output(p);
  69. }
  70. void
  71. imepAgent::sendHello(nsaddr_t index)
  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_imep *im = HDR_IMEP(p);
  77. struct imep_hello_block *hb = (struct imep_hello_block*) (im + 1);
  78. struct imep_hello *hello = (struct imep_hello*) (hb + 1);
  79. ch->ptype() = PT_IMEP;
  80. ch->size() = HELLO_HDR_LEN;
  81. ch->iface() = -2;
  82. ch->error() = 0;
  83. ch->addr_type() = NS_AF_NONE;
  84.         ch->prev_hop_ = ipaddr;
  85. ch->uid() = uidcnt_++;
  86. ih->saddr() = ipaddr;
  87. ih->daddr() = IP_BROADCAST;
  88. ih->sport() = RT_PORT;
  89. ih->dport() = RT_PORT;
  90. ih->ttl_ = 1;
  91. im->imep_version = IMEP_VERSION;
  92. im->imep_block_flags = BLOCK_FLAG_HELLO;
  93. U_INT16_T(im->imep_length) = sizeof(struct hdr_imep) +
  94. sizeof(struct imep_hello_block) + sizeof(struct imep_hello);
  95. hb->hb_num_hellos = 1;
  96. INT32_T(hello->hello_ipaddr) = index;
  97. helloQueue.enque(p);
  98. // aggregate as many control messages as possible before sending
  99. if(controlTimer.busy() == 0) {
  100. controlTimer.start(MIN_TRANSMIT_WAIT_TIME_LOWP
  101.  + ((MAX_TRANSMIT_WAIT_TIME_LOWP - MIN_TRANSMIT_WAIT_TIME_LOWP)
  102.  * Random::uniform()));
  103. }
  104. }
  105. void
  106. imepAgent::sendAck(nsaddr_t index, u_int32_t seqno)
  107. {
  108. Packet *p = Packet::alloc();
  109. struct hdr_cmn *ch = HDR_CMN(p);
  110. struct hdr_ip *ih = HDR_IP(p);
  111. struct hdr_imep *im = HDR_IMEP(p);
  112. struct imep_ack_block *ab = (struct imep_ack_block*) (im + 1);
  113. struct imep_ack *ack = (struct imep_ack*) (ab + 1);
  114. ch->ptype() = PT_IMEP;
  115. ch->size() = ACK_HDR_LEN;
  116. ch->iface() = -2;
  117. ch->error() = 0;
  118. ch->addr_type() = NS_AF_NONE;
  119.         ch->prev_hop_ = ipaddr;
  120. ch->uid() = uidcnt_++;
  121. ih->saddr() = ipaddr;
  122. ih->daddr() = IP_BROADCAST;
  123. ih->sport() = RT_PORT;
  124. ih->dport() = RT_PORT;
  125. ih->ttl_ = 1;
  126. im->imep_version = IMEP_VERSION;
  127. im->imep_block_flags = BLOCK_FLAG_ACK;
  128. U_INT16_T(im->imep_length) = sizeof(struct hdr_imep) +
  129. sizeof(struct imep_ack_block) + sizeof(struct imep_ack)
  130. ;
  131. ab->ab_num_acks = 1;
  132. ack->ack_seqno = seqno;
  133. INT32_T(ack->ack_ipaddr) = index;
  134. // aggregate as many control messages as possible before sending
  135. ackQueue.enque(p);
  136. if(controlTimer.busy() == 0) {
  137. controlTimer.start(MIN_TRANSMIT_WAIT_TIME_LOWP
  138.  + ((MAX_TRANSMIT_WAIT_TIME_LOWP - MIN_TRANSMIT_WAIT_TIME_LOWP)
  139.  * Random::uniform()));
  140. }
  141. }