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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1999  International Computer Science Institute
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by ACIRI, the AT&T
  16.  *      Center for Internet Research at ICSI (the International Computer
  17.  *      Science Institute).
  18.  * 4. Neither the name of ACIRI nor of ICSI 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 ICSI 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 ICSI 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. #ifndef ns_tcp_rfc793edu_h
  35. #define ns_tcp_rfc793edu_h
  36. #include "tcp.h"
  37. // Original code contributed by Fernando Cela Diaz,
  38. // <fcela@ce.chalmers.se>.
  39. // For more information, see the following:
  40. // URL "http://www.ce.chalmers.se/~fcela/tcp-tour.html"
  41. /* RFC793edu TCP -- 19990821, fcela@acm.org */
  42. class RFC793eduTcpAgent : public virtual TcpAgent {
  43.  public:
  44. RFC793eduTcpAgent();
  45. virtual void rtt_backoff();
  46.         virtual void rtt_update(double tao);
  47.         virtual void recv(Packet*, Handler*);
  48.         virtual void opencwnd();
  49. virtual void output(int seqno, int reason = 0);
  50.         void reset();
  51. virtual void recv_newack_helper(Packet*);
  52. void newack(Packet*);
  53.  protected:
  54. virtual void delay_bind_init_all();
  55. virtual int delay_bind_dispatch(const char *varName, const char *localName, TclObject *tracer);
  56.         int add793expbackoff_;  /* Add Karn's exp. backoff to rfc793 tcp */
  57.         int add793jacobsonrtt_; /* Add Jacobson/Karels RTT estimation */
  58.         int add793fastrtx_;     /* Add the Fast-Retransmit Algorithm */
  59.         int add793slowstart_;   /* Add Slow Start with Congestion Avoidance */
  60.         int add793additiveinc_; /* Add Congestion Avoidance, without
  61.  * Slow-Start (Additive
  62.  * Increase/Multiplicative Decrease) 
  63.  */
  64.         int add793karnrtt_;     /* Add Karn Algorithm for RTT sampling */
  65.         int add793exponinc_;    /* Add Multiplicative
  66.  * Increase/Multiplicative Decrease */
  67. double rto_;            /* Current value of the retx timer IN TICKS */
  68. };
  69. #endif