A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
internet
model
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/tcp-recovery-ops.h"
25
26
class
TcpBicIncrementTest
;
27
class
TcpBicDecrementTest
;
28
29
namespace
ns3
{
30
81
class
TcpBic
:
public
TcpCongestionOps
82
{
83
public
:
88
static
TypeId
GetTypeId
(
void
);
89
93
TcpBic
();
94
99
TcpBic
(
const
TcpBic
&sock);
100
101
virtual
std::string
GetName
()
const
;
102
virtual
void
IncreaseWindow
(
Ptr<TcpSocketState>
tcb,
103
uint32_t segmentsAcked);
104
virtual
uint32_t
GetSsThresh
(
Ptr<const TcpSocketState>
tcb,
105
uint32_t bytesInFlight);
106
107
virtual
Ptr<TcpCongestionOps>
Fork
();
108
109
protected
:
115
virtual
uint32_t
Update
(
Ptr<TcpSocketState>
tcb);
116
117
private
:
122
friend
class ::TcpBicIncrementTest;
127
friend
class ::TcpBicDecrementTest;
128
129
// User parameters
130
bool
m_fastConvergence
;
131
double
m_beta
;
132
uint32_t
m_maxIncr
;
133
uint32_t
m_lowWnd
;
134
uint32_t
m_smoothPart
;
135
136
// Bic parameters
137
uint32_t
m_cWndCnt
;
138
uint32_t
m_lastMaxCwnd
;
139
uint32_t
m_lastCwnd
;
140
Time
m_epochStart
;
141
uint8_t
m_b
;
142
};
143
144
}
// namespace ns3
145
#endif // TCPBIC_H
ns3::TcpBic
BIC congestion control algorithm.
Definition:
tcp-bic.h:81
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:102
ns3::TcpBic::m_epochStart
Time m_epochStart
Beginning of an epoch.
Definition:
tcp-bic.h:140
ns3::TcpBic::m_fastConvergence
bool m_fastConvergence
Enable or disable fast convergence algorithm.
Definition:
tcp-bic.h:130
ns3::Ptr< TcpSocketState >
ns3::TcpBic::m_lastMaxCwnd
uint32_t m_lastMaxCwnd
Last maximum cWnd.
Definition:
tcp-bic.h:138
ns3::TcpBic::GetName
virtual std::string GetName() const
Get the name of the congestion control algorithm.
Definition:
tcp-bic.cc:233
ns3::TcpBic::m_lowWnd
uint32_t m_lowWnd
Lower bound on congestion window.
Definition:
tcp-bic.h:133
ns3::TcpBic::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
tcp-bic.cc:29
ns3::TcpBic::m_maxIncr
uint32_t m_maxIncr
Maximum window increment.
Definition:
tcp-bic.h:132
ns3::TcpBic::GetSsThresh
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
ns3::TcpBic::Update
virtual uint32_t Update(Ptr< TcpSocketState > tcb)
Bic window update after a new ack received.
Definition:
tcp-bic.cc:134
ns3::TcpBic::m_cWndCnt
uint32_t m_cWndCnt
cWnd integer-to-float counter
Definition:
tcp-bic.h:137
TcpBicIncrementTest
Testing the congestion avoidance increment on TcpBic.
Definition:
tcp-bic-test.cc:36
ns3::TcpBic::m_smoothPart
uint32_t m_smoothPart
Number of RTT needed to reach Wmax from Wmax-B.
Definition:
tcp-bic.h:134
ns3::TcpBic::Fork
virtual Ptr< TcpCongestionOps > Fork()
Copy the congestion control algorithm across socket.
Definition:
tcp-bic.cc:277
ns3::TcpBic::TcpBic
TcpBic()
Constructor.
Definition:
tcp-bic.cc:68
ns3::TcpBic::m_lastCwnd
uint32_t m_lastCwnd
Last cWnd.
Definition:
tcp-bic.h:139
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::TcpBic::m_beta
double m_beta
Beta for cubic multiplicative increase.
Definition:
tcp-bic.h:131
ns3::TcpCongestionOps
Congestion control abstract class.
Definition:
tcp-congestion-ops.h:50
ns3::TcpBic::m_b
uint8_t m_b
Binary search coefficient.
Definition:
tcp-bic.h:141
TcpBicDecrementTest
Testing the congestion avoidance decrement on TcpBic.
Definition:
tcp-bic-test.cc:197
ns3::TcpBic::IncreaseWindow
virtual void IncreaseWindow(Ptr< TcpSocketState > tcb, uint32_t segmentsAcked)
Congestion avoidance algorithm implementation.
Definition:
tcp-bic.cc:96
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
Generated on Wed Nov 7 2018 10:01:56 for ns-3 by
1.8.14