A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
aarfcd-wifi-manager.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2005,2006 INRIA
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
* Author: Federico Maguolo <maguolof@dei.unipd.it>
19
*/
20
#ifndef AARFCD_WIFI_MANAGER_H
21
#define AARFCD_WIFI_MANAGER_H
22
23
#include "
wifi-remote-station-manager.h
"
24
25
namespace
ns3 {
26
27
struct
AarfcdWifiRemoteStation;
28
38
class
AarfcdWifiManager
:
public
WifiRemoteStationManager
39
{
40
public
:
41
static
TypeId
GetTypeId
(
void
);
42
AarfcdWifiManager
();
43
virtual
~AarfcdWifiManager
();
44
45
private
:
46
// overriden from base class
47
virtual
WifiRemoteStation
*
DoCreateStation
(
void
)
const
;
48
virtual
void
DoReportRxOk
(
WifiRemoteStation
*station,
49
double
rxSnr,
WifiMode
txMode);
50
virtual
void
DoReportRtsFailed
(
WifiRemoteStation
*station);
51
virtual
void
DoReportDataFailed
(
WifiRemoteStation
*station);
52
virtual
void
DoReportRtsOk
(
WifiRemoteStation
*station,
53
double
ctsSnr,
WifiMode
ctsMode,
double
rtsSnr);
54
virtual
void
DoReportDataOk
(
WifiRemoteStation
*station,
55
double
ackSnr,
WifiMode
ackMode,
double
dataSnr);
56
virtual
void
DoReportFinalRtsFailed
(
WifiRemoteStation
*station);
57
virtual
void
DoReportFinalDataFailed
(
WifiRemoteStation
*station);
58
virtual
WifiTxVector
DoGetDataTxVector
(
WifiRemoteStation
*station, uint32_t size);
59
virtual
WifiTxVector
DoGetRtsTxVector
(
WifiRemoteStation
*station);
60
virtual
bool
DoNeedRts
(
WifiRemoteStation
*station,
61
Ptr<const Packet>
packet,
bool
normally);
62
virtual
bool
IsLowLatency
(
void
)
const
;
63
64
void
CheckRts
(
AarfcdWifiRemoteStation
*station);
65
void
IncreaseRtsWnd
(
AarfcdWifiRemoteStation
*station);
66
void
ResetRtsWnd
(
AarfcdWifiRemoteStation
*station);
67
void
TurnOffRts
(
AarfcdWifiRemoteStation
*station);
68
void
TurnOnRts
(
AarfcdWifiRemoteStation
*station);
69
70
// aarf fields below
71
uint32_t
m_minTimerThreshold
;
72
uint32_t
m_minSuccessThreshold
;
73
double
m_successK
;
74
uint32_t
m_maxSuccessThreshold
;
75
double
m_timerK
;
76
77
// aarf-cd fields below
78
uint32_t
m_minRtsWnd
;
79
uint32_t
m_maxRtsWnd
;
80
bool
m_turnOffRtsAfterRateDecrease
;
81
bool
m_turnOnRtsAfterRateIncrease
;
82
};
83
84
}
// namespace ns3
85
86
#endif
/* AARFCD_WIFI_MANAGER_H */
ns3::AarfcdWifiManager::DoReportDataFailed
virtual void DoReportDataFailed(WifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:161
ns3::Ptr< const Packet >
ns3::AarfcdWifiManager::m_timerK
double m_timerK
Definition:
aarfcd-wifi-manager.h:75
ns3::WifiTxVector
Definition:
wifi-tx-vector.h:47
ns3::AarfcdWifiManager::DoNeedRts
virtual bool DoNeedRts(WifiRemoteStation *station, Ptr< const Packet > packet, bool normally)
Definition:
aarfcd-wifi-manager.cc:315
wifi-remote-station-manager.h
ns3::AarfcdWifiManager::m_maxSuccessThreshold
uint32_t m_maxSuccessThreshold
Definition:
aarfcd-wifi-manager.h:74
ns3::AarfcdWifiManager::DoReportRtsOk
virtual void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr)
Definition:
aarfcd-wifi-manager.cc:245
ns3::AarfcdWifiManager::m_maxRtsWnd
uint32_t m_maxRtsWnd
Definition:
aarfcd-wifi-manager.h:79
ns3::AarfcdWifiManager::m_minRtsWnd
uint32_t m_minRtsWnd
Definition:
aarfcd-wifi-manager.h:78
ns3::AarfcdWifiManager::m_turnOnRtsAfterRateIncrease
bool m_turnOnRtsAfterRateIncrease
Definition:
aarfcd-wifi-manager.h:81
ns3::WifiMode
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition:
wifi-mode.h:91
ns3::AarfcdWifiManager::DoGetDataTxVector
virtual WifiTxVector DoGetDataTxVector(WifiRemoteStation *station, uint32_t size)
Definition:
aarfcd-wifi-manager.cc:298
ns3::AarfcdWifiManager::DoReportFinalDataFailed
virtual void DoReportFinalDataFailed(WifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:292
ns3::AarfcdWifiManager::AarfcdWifiManager
AarfcdWifiManager()
Definition:
aarfcd-wifi-manager.cc:111
ns3::AarfcdWifiManager::DoReportFinalRtsFailed
virtual void DoReportFinalRtsFailed(WifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:287
ns3::AarfcdWifiManager::TurnOnRts
void TurnOnRts(AarfcdWifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:351
ns3::AarfcdWifiManager::TurnOffRts
void TurnOffRts(AarfcdWifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:343
ns3::AarfcdWifiManager::ResetRtsWnd
void ResetRtsWnd(AarfcdWifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:374
ns3::WifiRemoteStationManager
hold a list of per-remote-station state.
Definition:
wifi-remote-station-manager.h:83
ns3::AarfcdWifiManager::CheckRts
void CheckRts(AarfcdWifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:333
ns3::AarfcdWifiManager::~AarfcdWifiManager
virtual ~AarfcdWifiManager()
Definition:
aarfcd-wifi-manager.cc:116
ns3::AarfcdWifiManager::IsLowLatency
virtual bool IsLowLatency(void) const
Definition:
aarfcd-wifi-manager.cc:326
ns3::AarfcdWifiManager::DoReportRtsFailed
virtual void DoReportRtsFailed(WifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:147
ns3::AarfcdWifiManager::m_minSuccessThreshold
uint32_t m_minSuccessThreshold
Definition:
aarfcd-wifi-manager.h:72
ns3::AarfcdWifiManager::DoCreateStation
virtual WifiRemoteStation * DoCreateStation(void) const
Definition:
aarfcd-wifi-manager.cc:121
ns3::AarfcdWifiRemoteStation
Definition:
aarfcd-wifi-manager.cc:37
ns3::AarfcdWifiManager::m_minTimerThreshold
uint32_t m_minTimerThreshold
Definition:
aarfcd-wifi-manager.h:71
ns3::AarfcdWifiManager::m_turnOffRtsAfterRateDecrease
bool m_turnOffRtsAfterRateDecrease
Definition:
aarfcd-wifi-manager.h:80
ns3::AarfcdWifiManager::m_successK
double m_successK
Definition:
aarfcd-wifi-manager.h:73
ns3::AarfcdWifiManager::GetTypeId
static TypeId GetTypeId(void)
Definition:
aarfcd-wifi-manager.cc:59
ns3::AarfcdWifiManager
an implementation of the AARF-CD algorithmThis algorithm was first described in "Efficient Collision ...
Definition:
aarfcd-wifi-manager.h:38
ns3::AarfcdWifiManager::DoReportRxOk
virtual void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
Definition:
aarfcd-wifi-manager.cc:239
ns3::AarfcdWifiManager::DoReportDataOk
virtual void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr)
Definition:
aarfcd-wifi-manager.cc:254
ns3::AarfcdWifiManager::IncreaseRtsWnd
void IncreaseRtsWnd(AarfcdWifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:358
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:49
ns3::WifiRemoteStation
hold per-remote-station state.
Definition:
wifi-remote-station-manager.h:594
ns3::AarfcdWifiManager::DoGetRtsTxVector
virtual WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)
Definition:
aarfcd-wifi-manager.cc:305
src
wifi
model
aarfcd-wifi-manager.h
Generated on Sat Nov 16 2013 16:17:53 for ns-3 by
1.8.5