tcp-session.h
上传用户: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 Daedalus Research
  17.  * Group at the University of California Berkeley.
  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.  * Contributed by the Daedalus Research Group, http://daedalus.cs.berkeley.edu
  35.  *
  36.  * @(#) $Header: /cvsroot/nsnam/ns-2/tcp/tcp-session.h,v 1.8 1999/09/09 03:25:26 salehi Exp $ (UCB)
  37.  */
  38. #ifndef nc_tcp_session_h
  39. #define ns_tcp_session_h
  40. #include "agent.h"
  41. #include "timer-handler.h"
  42. #include "chost.h"
  43. #define FINE_ROUND_ROBIN 1
  44. #define COARSE_ROUND_ROBIN 2
  45. #define RANDOM 3
  46. class TcpSessionAgent;
  47. class SessionRtxTimer : public TimerHandler {
  48. public: 
  49. SessionRtxTimer(TcpSessionAgent *a) : TimerHandler() { a_ = a; }
  50. protected:
  51. virtual void expire(Event *e);
  52. TcpSessionAgent *a_;
  53. };
  54. class SessionResetTimer : public TimerHandler {
  55. public: 
  56. SessionResetTimer(TcpSessionAgent *a) : TimerHandler() { a_ = a; }
  57. protected:
  58. virtual void expire(Event *e);
  59. TcpSessionAgent *a_;
  60. };
  61. class SessionBurstSndTimer : public TimerHandler {
  62. public: 
  63. SessionBurstSndTimer(TcpSessionAgent *a) : TimerHandler() { a_ = a; }
  64. protected:
  65. virtual void expire(Event *e);
  66. TcpSessionAgent *a_;
  67. };
  68. /*
  69.  * This class implements the notion of a TCP session. It integrates congestion 
  70.  * control and loss detection functionality across the one or more IntTcp 
  71.  * connections that comprise the session.
  72.  */
  73. class TcpSessionAgent : public CorresHost {
  74. public:
  75. TcpSessionAgent();
  76. int command(int argc, const char*const* argv);
  77. void reset_rtx_timer(int mild, int backoff = 1); /* XXX mild needed ? */
  78. void set_rtx_timer();
  79. void cancel_rtx_timer();
  80. void cancel_timers();
  81. void newack(Packet *pkt);
  82. int fs_pkt();
  83. void rtt_update_exact(double tao);
  84. void timeout(int tno);
  85. virtual Segment* add_pkts(int size, int seqno, int sessionSeqno, int daddr, 
  86. int dport, int sport, double ts, IntTcpAgent *sender); 
  87. virtual void add_agent(IntTcpAgent *agent, int size, double winMult,
  88. int winInc, int ssthresh);
  89. int window();
  90. void set_weight(IntTcpAgent *tcp, int wt);
  91. void reset_dyn_weights();
  92. IntTcpAgent *who_to_snd(int how);
  93. void send_much(IntTcpAgent *agent, int force, int reason); 
  94. void recv(IntTcpAgent *agent, Packet *pkt, int amt_data_acked);
  95. void setflags(Packet *pkt);
  96. int findSessionSeqno(IntTcpAgent *sender, int seqno);
  97. void removeSessionSeqno(int sessionSeqno);
  98. void quench(int how, IntTcpAgent *sender, int seqno);
  99. virtual void traceVar(TracedVar* v);
  100. //  inline nsaddr_t& addr() {return addr_;}
  101. //  inline nsaddr_t& dst() {return dst_;}
  102. static Islist<TcpSessionAgent> sessionList_;
  103. protected:
  104. SessionRtxTimer rtx_timer_;
  105. SessionBurstSndTimer burstsnd_timer_;
  106. int sessionSeqno_;
  107. double last_send_time_;
  108. Segment *last_seg_sent_;
  109. IntTcpAgent *curConn_;
  110. int numConsecSegs_;
  111. int schedDisp_;
  112. int wtSum_;
  113. int dynWtSum_;
  114. };
  115. #endif