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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */ /*
  2.  * Copyright (c) 1991-1997 Regents of the University of California.
  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 the Computer Systems
  16.  * Engineering Group at Lawrence Berkeley Laboratory.
  17.  * 4. Neither the name of the University nor of the Laboratory may be used
  18.  *    to endorse or promote products derived from this software without
  19.  *    specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  * @(#) $Header: /cvsroot/nsnam/ns-2/tcp/tcp.h,v 1.130 2007/09/29 01:07:22 sallyfloyd Exp $ (LBL)
  34.  */
  35. #ifndef ns_tcp_h
  36. #define ns_tcp_h
  37. #include "agent.h"
  38. #include "packet.h"
  39. //class EventTrace;
  40. struct hdr_tcp {
  41. #define NSA 3
  42. double ts_;             /* time packet generated (at source) */
  43. double ts_echo_;        /* the echoed timestamp (originally sent by
  44.                            the peer) */
  45. int seqno_;             /* sequence number */
  46. int reason_;            /* reason for a retransmit */
  47. int sack_area_[NSA+1][2]; /* sack blocks: start, end of block */
  48. int sa_length_;         /* Indicate the number of SACKs in this  *
  49.                          * packet.  Adds 2+sack_length*8 bytes   */ 
  50. int ackno_;             /* ACK number for FullTcp */
  51. int hlen_;              /* header len (bytes) for FullTcp */
  52. int tcp_flags_;         /* TCP flags for FullTcp */
  53. int last_rtt_; /* more recent RTT measurement in ms, */
  54. /*   for statistics only */
  55. static int offset_; // offset for this header
  56. inline static int& offset() { return offset_; }
  57. inline static hdr_tcp* access(Packet* p) {
  58. return (hdr_tcp*) p->access(offset_);
  59. }
  60. /* per-field member functions */
  61. double& ts() { return (ts_); }
  62. double& ts_echo() { return (ts_echo_); }
  63. int& seqno() { return (seqno_); }
  64. int& reason() { return (reason_); }
  65. int& sa_left(int n) { return (sack_area_[n][0]); }
  66. int& sa_right(int n) { return (sack_area_[n][1]); }
  67. int& sa_length() { return (sa_length_); }
  68. int& hlen() { return (hlen_); }
  69. int& ackno() { return (ackno_); }  
  70. int& flags() { return (tcp_flags_); }
  71. int& last_rtt() { return (last_rtt_); }
  72. };
  73. /* these are used to mark packets as to why we xmitted them */
  74. #define TCP_REASON_TIMEOUT 0x01
  75. #define TCP_REASON_DUPACK 0x02
  76. #define TCP_REASON_RBP 0x03   // used only in tcp-rbp.cc
  77. #define TCP_REASON_PARTIALACK   0x04
  78. /* these are reasons we adjusted our congestion window */
  79. #define CWND_ACTION_DUPACK 1 // dup acks/fast retransmit
  80. #define CWND_ACTION_TIMEOUT 2 // retransmission timeout
  81. #define CWND_ACTION_ECN 3 // ECN bit [src quench if supported]
  82. #define CWND_ACTION_EXITED      4       // congestion recovery has ended
  83. // (when previously CWND_ACTION_DUPACK)
  84. /* these are bits for how to change the cwnd and ssthresh values */
  85. #define CLOSE_SSTHRESH_HALF 0x00000001
  86. #define CLOSE_CWND_HALF 0x00000002
  87. #define CLOSE_CWND_RESTART 0x00000004
  88. #define CLOSE_CWND_INIT 0x00000008
  89. #define CLOSE_CWND_ONE 0x00000010
  90. #define CLOSE_SSTHRESH_HALVE 0x00000020
  91. #define CLOSE_CWND_HALVE 0x00000040
  92. #define THREE_QUARTER_SSTHRESH  0x00000080
  93. #define CLOSE_CWND_HALF_WAY  0x00000100
  94. #define CWND_HALF_WITH_MIN 0x00000200
  95. #define TCP_IDLE 0x00000400
  96. #define NO_OUTSTANDING_DATA     0x00000800
  97. /*
  98.  * tcp_tick_:
  99.  * default 0.1,
  100.  * 0.3 for 4.3 BSD, 
  101.  * 0.01 for new window algorithms,
  102.  */
  103. #define NUMDUPACKS 3 /* This is no longer used.  The variable */
  104. /* numdupacks_ is used instead. */
  105. #define TCP_MAXSEQ 1073741824   /* Number that curseq_ is set to for */
  106. /* "infinite send" (2^30)            */
  107. #define TCP_TIMER_RTX 0
  108. #define TCP_TIMER_DELSND 1
  109. #define TCP_TIMER_BURSTSND 2
  110. #define TCP_TIMER_DELACK 3
  111. #define TCP_TIMER_Q         4
  112. #define TCP_TIMER_RESET        5 
  113. class TcpAgent;
  114. class RtxTimer : public TimerHandler {
  115. public: 
  116. RtxTimer(TcpAgent *a) : TimerHandler() { a_ = a; }
  117. protected:
  118. virtual void expire(Event *e);
  119. TcpAgent *a_;
  120. };
  121. class DelSndTimer : public TimerHandler {
  122. public: 
  123. DelSndTimer(TcpAgent *a) : TimerHandler() { a_ = a; }
  124. protected:
  125. virtual void expire(Event *e);
  126. TcpAgent *a_;
  127. };
  128. class BurstSndTimer : public TimerHandler {
  129. public: 
  130. BurstSndTimer(TcpAgent *a) : TimerHandler() { a_ = a; }
  131. protected:
  132. virtual void expire(Event *e);
  133. TcpAgent *a_;
  134. };
  135. /*
  136.  * Variables for HighSpeed TCP.
  137.  */
  138. //int *hs_win_; // array of cwnd values
  139. //int *hs_increase_; // array of increase values
  140. //double *hs_decrease_; // array of decrease values
  141. struct hstcp {
  142. double low_p;  // low_p
  143. double dec1; // for computing the decrease parameter
  144. double dec2;    // for computing the decrease parameter
  145. double p1; // for computing p
  146.         double p2; // for computing p
  147. /* The next three parameters are for CPU overhead, for computing */
  148. /*   the HighSpeed parameters less frequently.  A better solution */
  149.   /*   might be just to have a look-up array.  */
  150. double cwnd_last_; /* last cwnd for computed parameters */
  151.         double increase_last_; /* increase param for cwnd_last_ */
  152. hstcp() : low_p(0.0), dec1(0.0), dec2(0.0), p1(0.0), p2(0.0),
  153.     cwnd_last_(0.0), increase_last_(0.0) { }
  154. };
  155. class TcpAgent : public Agent {
  156. friend class XcpEndsys;
  157. public:
  158. TcpAgent();
  159. virtual ~TcpAgent() {free(tss);}
  160.         virtual void recv(Packet*, Handler*);
  161. virtual void timeout(int tno);
  162. virtual void timeout_nonrtx(int tno);
  163. int command(int argc, const char*const* argv);
  164. virtual void sendmsg(int nbytes, const char *flags = 0);
  165. void trace(TracedVar* v);
  166. virtual void advanceby(int delta);
  167. protected:
  168. virtual int window();
  169. virtual double windowd();
  170. void print_if_needed(double memb_time);
  171. void traceAll();
  172. virtual void traceVar(TracedVar* v);
  173. virtual int headersize();   // a tcp header
  174. virtual void delay_bind_init_all();
  175. virtual int delay_bind_dispatch(const char *varName, const char *localName, TclObject *tracer);
  176. double boot_time_; /* where between 'ticks' this sytem came up */
  177. double overhead_;
  178. double wnd_;
  179. double wnd_const_;
  180. double wnd_th_; /* window "threshold" */
  181. double wnd_init_;
  182. double wnd_restart_;
  183. double tcp_tick_; /* clock granularity */
  184. int wnd_option_;
  185. int wnd_init_option_;   /* 1 for using wnd_init_ */
  186. /* 2 for using large initial windows */
  187. double decrease_num_;   /* factor for multiplicative decrease */
  188. double increase_num_;   /* factor for additive increase */
  189. int tcpip_base_hdr_size_;  /* size of base TCP/IP header */
  190. int maxcwnd_; /* max # cwnd can ever be */
  191.         int numdupacks_; /* dup ACKs before fast retransmit */
  192. int numdupacksFrac_; /* for a larger numdupacks_ with large */
  193. /* windows */
  194. /* connection and packet dynamics */
  195. virtual void output(int seqno, int reason = 0);
  196. virtual void send_much(int force, int reason, int maxburst = 0);
  197. virtual void newtimer(Packet*);
  198. virtual void dupack_action(); /* do this on dupacks */
  199. virtual void send_one(); /* do this on 1-2 dupacks */
  200. virtual void opencwnd();
  201. void slowdown(int how); /* reduce cwnd/ssthresh */
  202. void ecn(int seqno); /* react to quench */
  203. virtual void set_initial_window(); /* set IW */
  204. double initial_window(); /* what is IW? */
  205. void reset();
  206. void newack(Packet*);
  207. void finish(); /* called when the connection is terminated */
  208. int network_limited(); /* Sending limited by network? */
  209. double limited_slow_start(double cwnd, int max_ssthresh, double increment);
  210. /* Limited slow-start for high windows */
  211. virtual int numdupacks(double cwnd);  /* for getting numdupacks_ */
  212. /* End of section of connection and packet dynamics.  */
  213. /* General dynamic state. */
  214. TracedInt t_seqno_; /* sequence number */
  215. TracedInt dupacks_; /* number of duplicate acks */
  216. TracedInt curseq_; /* highest seqno "produced by app" */
  217. TracedInt highest_ack_; /* not frozen during Fast Recovery */
  218. TracedDouble cwnd_; /* current window */
  219. TracedInt ssthresh_; /* slow start threshold */
  220. TracedInt maxseq_; /* used for Karn algorithm */
  221. /* highest seqno sent so far */
  222. int last_ack_; /* largest consecutive ACK, frozen during
  223.  * Fast Recovery */
  224. int recover_; /* highest pkt sent before dup acks, */
  225. /*   timeout, or source quench/ecn */
  226. int last_cwnd_action_; /* CWND_ACTION_{TIMEOUT,DUPACK,ECN} */
  227. int count_; /* used in window increment algorithms */
  228. int rtt_active_; /* 1 if a rtt sample is pending */
  229. int rtt_seq_; /* seq # of timed seg if rtt_active_ is 1 */
  230. double rtt_ts_; /* time at which rtt_seq_ was sent */
  231. double firstsent_; /* When first packet was sent  --Allman */
  232. double lastreset_; /* W.N. Last time connection was reset - for */
  233. /* detecting pkts from previous incarnations */
  234. int closed_;            /* whether this connection has closed */
  235. /* End of general dynamic state. */
  236. /*
  237.  * State encompassing the round-trip-time estimate.
  238.  * srtt and rttvar are stored as fixed point;
  239.  * srtt has 3 bits to the right of the binary point, rttvar has 2.
  240.  */
  241. TracedInt t_rtt_;       /* round trip time */
  242. TracedInt t_srtt_;      /* smoothed round-trip time */
  243. TracedInt t_rttvar_;    /* variance in round-trip time */
  244. TracedInt t_backoff_; /* current multiplier of RTO, */
  245. /*   1 if not backed off */
  246. #define T_RTT_BITS 0
  247. int T_SRTT_BITS;        /* exponent of weight for updating t_srtt_ */
  248. int srtt_init_; /* initial value for computing t_srtt_ */
  249. int T_RTTVAR_BITS;      /* exponent of weight for updating t_rttvar_ */ 
  250. int rttvar_exp_;        /* exponent of multiple for t_rtxcur_ */
  251. int rttvar_init_;       /* initial value for computing t_rttvar_ */
  252. double t_rtxcur_; /* current retransmit value */
  253. double rtxcur_init_;    /* initial value for t_rtxcur_ */
  254. virtual void rtt_init();
  255. virtual double rtt_timeout(); /* provide RTO based on RTT estimates */
  256. virtual void rtt_update(double tao); /* update RTT estimate */
  257. virtual void rtt_backoff(); /* double multiplier */
  258. /* End of state for the round-trip-time estimate. */
  259.         /* RTOs: */
  260. double maxrto_; /* max value of an RTO */
  261. double minrto_;         /* min value of an RTO */
  262. int ts_resetRTO_; /* Un-backoff RTO after any valid RTT, */
  263. /*   including from a retransmitted pkt?  */
  264. /* The old version was "false". */
  265. /* But "true" gives better performance, and */
  266.                                 /* seems conformant with RFC 2988. */
  267.         /* End of section for RTOs. */
  268. /* Timestamps. */
  269. double ts_peer_;        /* the most recent timestamp the peer sent */
  270. double ts_echo_;        /* the most recent timestamp the peer echoed */
  271. int ts_option_size_;    // header bytes in a ts option
  272.         double *tss;            // To store sent timestamps, with bugfix_ts_
  273.         int tss_size_;          // Current capacity of tss
  274. int ts_option_; /* use RFC1323-like timestamps? */
  275. /* End of timestamps. */
  276. /* Helper functions.  Used by tcp-asym */
  277. virtual void output_helper(Packet*) { return; }
  278. virtual void send_helper(int) { return; }
  279. virtual void send_idle_helper() { return; }
  280. virtual void recv_helper(Packet*) { return; }
  281. virtual void recv_frto_helper(Packet*);
  282. virtual void recv_newack_helper(Packet*);
  283. virtual void partialnewack_helper(Packet*) {};
  284. /* End of helper functions. */
  285. int force_wnd(int num);
  286. void spurious_timeout();
  287. /* Timers */
  288. RtxTimer rtx_timer_;
  289. DelSndTimer delsnd_timer_;
  290. BurstSndTimer burstsnd_timer_;
  291. virtual void cancel_timers() {
  292. rtx_timer_.force_cancel();
  293. burstsnd_timer_.force_cancel();
  294. delsnd_timer_.force_cancel();
  295. }
  296. virtual void cancel_rtx_timer() {
  297. rtx_timer_.force_cancel();
  298. }
  299. virtual void set_rtx_timer();
  300. void reset_rtx_timer(int mild, int backoff = 1);
  301. int timerfix_; /* set to true to update timer *after* */
  302. /* update the RTT, instead of before   */
  303. int rfc2988_; /* Use updated RFC 2988 timers */
  304. /* End of timers. */ 
  305. /* For modeling SYN and SYN/ACK packets. */
  306. int syn_; /* 1 for modeling SYN/ACK exchange */
  307. int delay_growth_;   /* delay opening cwnd until 1st data recv'd */
  308.         int max_connects_;   /* max number of transmits for syn packet */
  309. /* -1 to allow infinite number of transmits */
  310. /* End of modeling SYN and SYN/ACK packets. */
  311. /* Dynamic state for SYN packet retransmissions. */
  312. int syn_connects_; /* number of transmits of syn packet */
  313. /* End of dynamic state for SYN packet retransmissions. */
  314. /* F-RTO */
  315. int frto_enabled_; /* != 0 to enable F-RTO */
  316. int sfrto_enabled_; /* != 0 to enabled SACK-based F-RTO */
  317. int spurious_response_; /* Response variant to spurious RTO */
  318. /* End of R-RTO */
  319. /* Parameters for backwards compatility with old code. */ 
  320. int bug_fix_; /* 1 for multiple-fast-retransmit fix */
  321. int less_careful_; /* 1 for Less Careful variant of bug_fix_, */
  322. /*  for illustration only  */
  323. int exitFastRetrans_; /* True to clean exits of Fast Retransmit */ 
  324. /* False for buggy old behavior */
  325. int bugfix_ack_;        // 1 to enable ACK heuristic, to allow
  326. //  multiple-fast-retransmits in special cases.
  327. // From Andrei Gurtov
  328. int bugfix_ts_;         // 1 to enable timestamp heuristic, to allow
  329. //  multiple-fast-retransmits in special cases.
  330. // From Andrei Gurtov
  331. // Not implemented yet.
  332. int old_ecn_; /* For backwards compatibility with the 
  333.  * old ECN implementation, which never
  334.  * reduced the congestion window below
  335.  * one packet. */ 
  336. int bugfix_ss_; // 1 to use window of one when SYN
  337. //  packet is dropped
  338. /* End of parameters for backwards compatility. */
  339. /* Parameters for alternate congestion control mechanisms. */
  340. double k_parameter_;     /* k parameter in binomial controls */
  341. double l_parameter_;     /* l parameter in binomial controls */
  342. int precision_reduce_;  /* non-integer reduction of cwnd */
  343. int maxburst_; /* max # packets can send back-2-back */
  344. int aggressive_maxburst_; /* Send on a non-valid ack? */
  345. /* End of parameters for alternate congestion control mechanisms. */
  346. FILE *plotfile_;
  347. /* Dynamic state used for alternate congestion control mechanisms */
  348. double awnd_; /* averaged window */
  349. int first_decrease_; /* First decrease of congestion window.  */
  350. /* Used for decrease_num_ != 0.5. */
  351. double fcnt_; /* used in window increment algorithms */
  352. double base_cwnd_; /* base window (for experimental purposes) */
  353. /* End of state for alternate congestion control mechanisms */
  354. /* Dynamic state only used for monitoring */
  355. int trace_all_oneline_; /* TCP tracing vars all in one line or not? */
  356. int nam_tracevar_;      /* Output nam's variable trace or just plain 
  357.    text variable trace? */
  358.         TracedInt ndatapack_;   /* number of data packets sent */
  359.         TracedInt ndatabytes_;  /* number of data bytes sent */
  360.         TracedInt nackpack_;    /* number of ack packets received */
  361.         TracedInt nrexmit_;     /* number of retransmit timeouts 
  362.    when there was data outstanding */
  363.         TracedInt nrexmitpack_; /* number of retransmited packets */
  364.         TracedInt nrexmitbytes_; /* number of retransmited bytes */
  365.         TracedInt necnresponses_; /* number of times cwnd was reduced
  366.        in response to an ecn packet -- sylvia */
  367.         TracedInt ncwndcuts_;  /* number of times cwnd was reduced 
  368.    for any reason -- sylvia */
  369.         TracedInt ncwndcuts1_;     /* number of times cwnd was reduced 
  370.                                    due to congestion (as opposed to idle
  371.                                    periods */
  372. /* end of dynamic state for monitoring */
  373. /* Specifying variants in TCP algorithms.  */
  374. int slow_start_restart_; /* boolean: re-init cwnd after connection 
  375.     goes idle.  On by default. */
  376. int restart_bugfix_;    /* ssthresh is cut down because of
  377.    timeouts during a connection's idle period.
  378.    Setting this boolean fixes this problem.
  379.    For now, it is off by default. */ 
  380.         TracedInt singledup_;   /* Send on a single dup ack.  */
  381. int LimTransmitFix_; /* To fix a bug in Limited Transmit. */
  382. int noFastRetrans_; /* No Fast Retransmit option.  */
  383. int oldCode_; /* Use old code. */
  384. int useHeaders_; /* boolean: Add TCP/IP header sizes */
  385. /* end of specifying variants */
  386. /* Used for ECN */
  387. int ecn_; /* Explicit Congestion Notification */
  388. int cong_action_; /* Congestion Action.  True to indicate
  389.    that the sender responded to congestion. */
  390.         int ecn_burst_; /* True when the previous ACK packet
  391.  *  carried ECN-Echo. */
  392. int ecn_backoff_; /* True when retransmit timer should begin
  393.        to be backed off.  */
  394. int ect_;        /* turn on ect bit now? */
  395. int SetCWRonRetransmit_;  /* True to allow setting CWR on */
  396.   /*  retransmitted packets.   Affects */
  397.   /*  performance for Reno with ECN.  */
  398. int use_rtt_;      /* Use RTT for timeout for ECN-marked SYN-ACK */
  399. /* end of ECN */
  400. /* used for Explicit Loss Notification */
  401. void tcp_eln(Packet *pkt); /* reaction to ELN (usually wireless) */
  402.         int eln_;               /* Explicit Loss Notification (wireless) */
  403.         int eln_rxmit_thresh_;  /* Threshold for ELN-triggered rxmissions */
  404.         int eln_last_rxmit_;    /* Last packet rxmitted due to ELN info */
  405. /* end of Explicit Loss Notification */
  406. /* for High-Speed TCP, RFC 3649 */
  407. double linear(double x, double x_1, double y_1, double x_2, double y_2);
  408.   /* the "linear" function is for experimental highspeed TCP */
  409. /* These four parameters define the HighSpeed response function. */
  410. int low_window_; /* window for turning on high-speed TCP */
  411. int high_window_; /* target window for new response function */
  412. double high_p_; /* target drop rate for new response function */
  413. double high_decrease_; /* decrease rate at target window */
  414. /* The next parameter is for Limited Slow-Start. */
  415. int max_ssthresh_; /* max value for ssthresh_ */
  416. /* These two functions are just an easy structuring of the code. */ 
  417. double increase_param();  /* get increase parameter for current cwnd */
  418. double decrease_param();  /* get decrease parameter for current cwnd */
  419. int cwnd_range_; /* for determining when to recompute params. */
  420. hstcp hstcp_; /* HighSpeed TCP variables */
  421.         /* end of section for experimental high-speed TCP */
  422. /* for Quick-Start, RFC 4782 */
  423. virtual void processQuickStart(Packet *pkt);
  424. virtual void endQuickStart();
  425. int lossQuickStart();
  426. int rate_request_;      /* Rate request in KBps, for QuickStart.  */
  427. int qs_enabled_;        /* to enable QuickStart. */
  428. int qs_requested_;
  429. int qs_approved_;
  430.         int qs_window_;  /* >0: there are outstanding non-acked segments
  431.                             from QS window */
  432.         int qs_cwnd_; /* Initial window for Quick-Start */
  433.         int tcp_qs_recovery_; /* != 0 if we apply slow start on packet
  434.                                  losses during QS window */
  435. int qs_request_mode_;   /* 1 = Try to avoid unnecessary QS requests
  436.    for short flows. Use qs_rtt_ as the RTT
  437.    used in window calculation.
  438.    Other: Always request 'rate_request_' bytes,
  439.    regardless of flow size */
  440. int qs_thresh_;         /* Do not use QS if there are less data to send
  441.    than this. Applies only if
  442.    qs_request_mode_ == 1 */
  443. int qs_rtt_;            /* QS needs some assumption of the RTT in
  444.    in order to be able to determine how much
  445.    it needs for rate request with given amount
  446.    of data to send. milliseconds. */
  447. int print_request_; /* true to print Quick-Start request */
  448. int ttl_diff_;
  449.         /* end of section for Quick-Start. */
  450. /* F-RTO: !=0 when F-RTO recovery is underway, N:th round-trip
  451.  * since RTO. Can have values between 0-2 */
  452. int frto_;
  453. int pipe_prev_; /* window size when timeout last occurred */
  454.         /* support for event-tracing */
  455.         //EventTrace *et_;
  456.         void trace_event(char *eventtype);
  457. /* these function are now obsolete, see other above */
  458. void closecwnd(int how);
  459. void quench(int how);
  460.         
  461. /* TCP quiescence, reducing cwnd after an idle period */
  462. void process_qoption_after_send() ;
  463. void process_qoption_after_ack(int seqno) ;
  464. void reset_qoption(); /* for QOption with EnblRTTCtr_ */
  465. void rtt_counting(); /* for QOption with EnblRTTCtr_ */
  466. int QOption_ ; /* TCP quiescence option */
  467. int EnblRTTCtr_ ; /* are we using a corase grained timer? */
  468. int T_full ; /* last time the window was full */
  469. int T_last ;
  470. int T_prev ;
  471. int T_start ;
  472. int RTT_count ;
  473. int RTT_prev ;
  474. int RTT_goodcount ;
  475. int F_counting ;
  476. int W_used ; 
  477. int W_timed ;
  478. int F_full ; 
  479. int Backoffs ;
  480. int control_increase_ ; /* If true, don't increase cwnd if sender */
  481. /*  is not window-limited.  */
  482. int prev_highest_ack_ ; /* Used to determine if sender is */
  483. /*  window-limited.  */
  484.     /* end of TCP quiescence */
  485. };
  486. /* TCP Reno */
  487. class RenoTcpAgent : public virtual TcpAgent {
  488.  public:
  489. RenoTcpAgent();
  490. virtual int window();
  491. virtual double windowd();
  492. virtual void recv(Packet *pkt, Handler*);
  493. virtual void timeout(int tno);
  494. virtual void dupack_action();
  495.  protected:
  496. int allow_fast_retransmit(int last_cwnd_action_);
  497. unsigned int dupwnd_;
  498. };
  499. /* TCP New Reno */
  500. class NewRenoTcpAgent : public virtual RenoTcpAgent {
  501.  public:
  502. NewRenoTcpAgent();
  503. virtual void recv(Packet *pkt, Handler*);
  504. virtual void partialnewack_helper(Packet* pkt);
  505. virtual void dupack_action();
  506.  protected:
  507. int newreno_changes_; /* 0 for fixing unnecessary fast retransmits */
  508. /* 1 for additional code from Allman, */
  509. /* to implement other algorithms from */
  510. /* Hoe's paper, including sending a new */
  511. /* packet for every two duplicate ACKs. */
  512. /* The default is set to 0. */
  513. int newreno_changes1_;  /* Newreno_changes1_ set to 0 gives the */
  514. /* Slow-but-Steady variant of NewReno from */
  515. /* RFC 2582, with the retransmit timer reset */
  516. /* after each partial new ack. */  
  517. /* Newreno_changes1_ set to 1 gives the */
  518. /* Impatient variant of NewReno from */
  519. /* RFC 2582, with the retransmit timer reset */
  520. /* only for the first partial new ack. */
  521. /* The default is set to 0 */
  522. void partialnewack(Packet *pkt);
  523. int allow_fast_retransmit(int last_cwnd_action_);
  524. int acked_, new_ssthresh_;  /* used if newreno_changes_ == 1 */
  525. double ack2_, ack3_, basertt_; /* used if newreno_changes_ == 1 */
  526. int firstpartial_;  /* For the first partial ACK. */ 
  527. int partial_window_deflation_; /* 0 if set cwnd to ssthresh upon */
  528.        /* partial new ack (default) */
  529.        /* 1 if deflate (cwnd + dupwnd) by */
  530.        /* amount of data acked */
  531.        /* "Partial window deflation" is */
  532.        /* discussed in RFC 2582. */
  533. int exit_recovery_fix_;  /* 0 for setting cwnd to ssthresh upon */
  534.  /* leaving fast recovery (default) */
  535.  /* 1 for setting cwnd to min(ssthresh, */
  536.  /* amnt. of data in network) when leaving */
  537. };
  538. /* TCP vegas (VegasTcpAgent) */
  539. class VegasTcpAgent : public virtual TcpAgent {
  540.  public:
  541. VegasTcpAgent();
  542. ~VegasTcpAgent();
  543. virtual void recv(Packet *pkt, Handler *);
  544. virtual void timeout(int tno);
  545. protected:
  546. double vegastime() {
  547. return(Scheduler::instance().clock() - firstsent_);
  548. }
  549. virtual void output(int seqno, int reason = 0);
  550. virtual void recv_newack_helper(Packet*);
  551. int vegas_expire(Packet*); 
  552. void reset();
  553. void vegas_inflate_cwnd(int win, double current_time);
  554. virtual void delay_bind_init_all();
  555. virtual int delay_bind_dispatch(const char *varName, const char *localName, TclObject *tracer);
  556. double t_cwnd_changed_; // last time cwnd changed
  557. double firstrecv_; // time recv the 1st ack
  558. int    v_alpha_;     // vegas thruput thresholds in pkts
  559. int    v_beta_;       
  560. int    v_gamma_;     // threshold to change from slow-start to
  561. // congestion avoidance, in pkts
  562. int    v_slowstart_;    // # of pkts to send after slow-start, deflt(2)
  563. int    v_worried_;      // # of pkts to chk after dup ack (1 or 2)
  564. double v_timeout_;      // based on fine-grained timer
  565. double v_rtt_;
  566. double v_sa_;
  567. double v_sd_;
  568. int    v_cntRTT_;       // # of rtt measured within one rtt
  569. double v_sumRTT_;       // sum of rtt measured within one rtt
  570. double v_begtime_; // tagged pkt sent
  571. int    v_begseq_; // tagged pkt seqno
  572. double* v_sendtime_; // each unacked pkt's sendtime is recorded.
  573. int*   v_transmits_; // # of retx for an unacked pkt
  574. int    v_maxwnd_; // maxwnd size for v_sendtime_[]
  575. double v_newcwnd_; // record un-inflated cwnd
  576. double v_baseRTT_; // min of all rtt
  577. double v_incr_; // amount cwnd is increased in the next rtt
  578. int    v_inc_flag_; // if cwnd is allowed to incr for this rtt
  579. double v_actual_; // actual send rate (pkt/s; needed for tcp-rbp)
  580. int ns_vegas_fix_level_;   // see comment at end of tcp-vegas.cc for details of fixes
  581. };
  582. // Local Variables:
  583. // mode:c++
  584. // c-basic-offset: 8
  585. // End:
  586. #endif