A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
tcp-bic.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014 Natale Patriciello <natale.patriciello@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  */
19 
20 #ifndef TCPBIC_H
21 #define TCPBIC_H
22 
23 #include "ns3/tcp-congestion-ops.h"
24 #include "ns3/traced-value.h"
25 
26 namespace ns3 {
27 
74 class TcpBic : public TcpCongestionOps
75 {
76 public:
81  static TypeId GetTypeId (void);
82 
86  TcpBic ();
87 
92  TcpBic (const TcpBic &sock);
93 
94  virtual std::string GetName () const;
95  virtual void IncreaseWindow (Ptr<TcpSocketState> tcb,
96  uint32_t segmentsAcked);
97  virtual uint32_t GetSsThresh (Ptr<const TcpSocketState> tcb,
98  uint32_t bytesInFlight);
99 
100  virtual Ptr<TcpCongestionOps> Fork ();
101 
102 protected:
106  virtual uint32_t Update (Ptr<TcpSocketState> tcb);
107 
108 private:
109  friend class TcpBicIncrementTest;
110  friend class TcpBicDecrementTest;
111 
112  // User parameters
114  double m_beta;
115  uint32_t m_maxIncr;
116  uint32_t m_lowWnd;
118 
119  // Bic parameters
120  uint32_t m_cWndCnt;
121  uint32_t m_lastMaxCwnd;
122  uint32_t m_lastCwnd;
124  uint8_t m_b;
125 };
126 
127 } // namespace ns3
128 #endif // TCPBIC_H
BIC congestion control algorithm.
Definition: tcp-bic.h:74
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Time m_epochStart
Beginning of an epoch.
Definition: tcp-bic.h:123
bool m_fastConvergence
Enable or disable fast convergence algorithm.
Definition: tcp-bic.h:113
Testing the congestion avoidance increment on TcpBic.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
int m_smoothPart
Number of RTT needed to reach Wmax from Wmax-B.
Definition: tcp-bic.h:117
uint32_t m_lastMaxCwnd
Last maximum cWnd.
Definition: tcp-bic.h:121
uint32_t m_lowWnd
Lower bound on congestion window.
Definition: tcp-bic.h:116
static TypeId GetTypeId(void)
Get the type ID.
Definition: tcp-bic.cc:29
Testing the congestion avoidance increment on TcpBic.
Definition: tcp-bic-test.cc:33
uint32_t m_maxIncr
Maximum window increment.
Definition: tcp-bic.h:115
virtual uint32_t GetSsThresh(Ptr< const TcpSocketState > tcb, uint32_t bytesInFlight)
Get the slow start threshold after a loss event.
Definition: tcp-bic.cc:239
virtual uint32_t Update(Ptr< TcpSocketState > tcb)
Bic window update after a new ack received.
Definition: tcp-bic.cc:134
uint32_t m_cWndCnt
cWnd integer-to-float counter
Definition: tcp-bic.h:120
virtual Ptr< TcpCongestionOps > Fork()
Copy the congestion control algorithm across socket.
Definition: tcp-bic.cc:277
virtual std::string GetName() const
Get the name of the congestion control algorithm.
Definition: tcp-bic.cc:233
TcpBic()
Constructor.
Definition: tcp-bic.cc:68
uint32_t m_lastCwnd
Last cWnd.
Definition: tcp-bic.h:122
double m_beta
Beta for cubic multiplicative increase.
Definition: tcp-bic.h:114
Congestion control abstract class.
uint8_t m_b
Binary search coefficient.
Definition: tcp-bic.h:124
virtual void IncreaseWindow(Ptr< TcpSocketState > tcb, uint32_t segmentsAcked)
Congestion avoidance algorithm implementation.
Definition: tcp-bic.cc:96
a unique identifier for an interface.
Definition: type-id.h:58