A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
wifi
model
constant-rate-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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19
*/
20
21
#ifndef CONSTANT_RATE_WIFI_MANAGER_H
22
#define CONSTANT_RATE_WIFI_MANAGER_H
23
24
#include "
wifi-remote-station-manager.h
"
25
26
namespace
ns3
{
27
35
class
ConstantRateWifiManager
:
public
WifiRemoteStationManager
36
{
37
public
:
42
static
TypeId
GetTypeId
(
void
);
43
ConstantRateWifiManager
();
44
virtual
~ConstantRateWifiManager
();
45
46
47
private
:
48
//overridden from base class
49
WifiRemoteStation
*
DoCreateStation
(
void
)
const
;
50
void
DoReportRxOk
(
WifiRemoteStation
*station,
51
double
rxSnr,
WifiMode
txMode);
52
void
DoReportRtsFailed
(
WifiRemoteStation
*station);
53
void
DoReportDataFailed
(
WifiRemoteStation
*station);
54
void
DoReportRtsOk
(
WifiRemoteStation
*station,
55
double
ctsSnr,
WifiMode
ctsMode,
double
rtsSnr);
56
void
DoReportDataOk
(
WifiRemoteStation
*station,
57
double
ackSnr,
WifiMode
ackMode,
double
dataSnr);
58
void
DoReportFinalRtsFailed
(
WifiRemoteStation
*station);
59
void
DoReportFinalDataFailed
(
WifiRemoteStation
*station);
60
WifiTxVector
DoGetDataTxVector
(
WifiRemoteStation
*station);
61
WifiTxVector
DoGetRtsTxVector
(
WifiRemoteStation
*station);
62
bool
IsLowLatency
(
void
)
const
;
63
64
WifiMode
m_dataMode
;
65
WifiMode
m_ctlMode
;
66
};
67
68
}
//namespace ns3
69
70
#endif
/* CONSTANT_RATE_WIFI_MANAGER_H */
ns3::ConstantRateWifiManager::DoGetDataTxVector
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station)
Definition:
constant-rate-wifi-manager.cc:118
ns3::WifiTxVector
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Definition:
wifi-tx-vector.h:61
wifi-remote-station-manager.h
ns3::ConstantRateWifiManager
use constant rates for data and RTS transmissions
Definition:
constant-rate-wifi-manager.h:35
ns3::ConstantRateWifiManager::DoCreateStation
WifiRemoteStation * DoCreateStation(void) const
Definition:
constant-rate-wifi-manager.cc:65
ns3::WifiMode
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition:
wifi-mode.h:97
ns3::ConstantRateWifiManager::DoReportRtsOk
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:92
ns3::ConstantRateWifiManager::DoReportRtsFailed
void DoReportRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:80
ns3::ConstantRateWifiManager::IsLowLatency
bool IsLowLatency(void) const
Definition:
constant-rate-wifi-manager.cc:132
ns3::ConstantRateWifiManager::DoReportFinalRtsFailed
void DoReportFinalRtsFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:106
ns3::WifiRemoteStationManager
hold a list of per-remote-station state.
Definition:
wifi-remote-station-manager.h:93
ns3::ConstantRateWifiManager::m_ctlMode
WifiMode m_ctlMode
Wifi mode for RTS frames.
Definition:
constant-rate-wifi-manager.h:65
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::ConstantRateWifiManager::ConstantRateWifiManager
ConstantRateWifiManager()
Definition:
constant-rate-wifi-manager.cc:54
ns3::ConstantRateWifiManager::DoReportDataOk
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:99
ns3::ConstantRateWifiManager::m_dataMode
WifiMode m_dataMode
Wifi mode for unicast DATA frames.
Definition:
constant-rate-wifi-manager.h:64
ns3::ConstantRateWifiManager::DoGetRtsTxVector
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station)
Definition:
constant-rate-wifi-manager.cc:125
ns3::ConstantRateWifiManager::~ConstantRateWifiManager
virtual ~ConstantRateWifiManager()
Definition:
constant-rate-wifi-manager.cc:59
ns3::ConstantRateWifiManager::DoReportFinalDataFailed
void DoReportFinalDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:112
ns3::ConstantRateWifiManager::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
constant-rate-wifi-manager.cc:36
ns3::ConstantRateWifiManager::DoReportRxOk
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:73
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
ns3::ConstantRateWifiManager::DoReportDataFailed
void DoReportDataFailed(WifiRemoteStation *station)
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:86
ns3::WifiRemoteStation
hold per-remote-station state.
Definition:
wifi-remote-station-manager.h:1531
Generated on Wed Nov 7 2018 10:02:13 for ns-3 by
1.8.14