A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
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 "ns3/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
WifiRemoteStation
*
DoCreateStation
(
void
)
const override
;
49
void
DoReportRxOk
(
WifiRemoteStation
*station,
50
double
rxSnr,
WifiMode
txMode)
override
;
51
void
DoReportRtsFailed
(
WifiRemoteStation
*station)
override
;
52
void
DoReportDataFailed
(
WifiRemoteStation
*station)
override
;
53
void
DoReportRtsOk
(
WifiRemoteStation
*station,
54
double
ctsSnr,
WifiMode
ctsMode,
double
rtsSnr)
override
;
55
void
DoReportDataOk
(
WifiRemoteStation
*station,
double
ackSnr,
WifiMode
ackMode,
56
double
dataSnr, uint16_t dataChannelWidth, uint8_t dataNss)
override
;
57
void
DoReportFinalRtsFailed
(
WifiRemoteStation
*station)
override
;
58
void
DoReportFinalDataFailed
(
WifiRemoteStation
*station)
override
;
59
WifiTxVector
DoGetDataTxVector
(
WifiRemoteStation
*station)
override
;
60
WifiTxVector
DoGetRtsTxVector
(
WifiRemoteStation
*station)
override
;
61
62
WifiMode
m_dataMode
;
63
WifiMode
m_ctlMode
;
64
};
65
66
}
//namespace ns3
67
68
#endif
/* CONSTANT_RATE_WIFI_MANAGER_H */
ns3::ConstantRateWifiManager
use constant rates for data and RTS transmissions
Definition:
constant-rate-wifi-manager.h:36
ns3::ConstantRateWifiManager::DoReportRxOk
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:74
ns3::ConstantRateWifiManager::DoGetRtsTxVector
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
Definition:
constant-rate-wifi-manager.cc:131
ns3::ConstantRateWifiManager::m_ctlMode
WifiMode m_ctlMode
Wifi mode for RTS frames.
Definition:
constant-rate-wifi-manager.h:63
ns3::ConstantRateWifiManager::DoGetDataTxVector
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station) override
Definition:
constant-rate-wifi-manager.cc:119
ns3::ConstantRateWifiManager::~ConstantRateWifiManager
virtual ~ConstantRateWifiManager()
Definition:
constant-rate-wifi-manager.cc:60
ns3::ConstantRateWifiManager::DoReportRtsFailed
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:81
ns3::ConstantRateWifiManager::DoReportFinalRtsFailed
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:107
ns3::ConstantRateWifiManager::ConstantRateWifiManager
ConstantRateWifiManager()
Definition:
constant-rate-wifi-manager.cc:55
ns3::ConstantRateWifiManager::DoReportDataOk
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:100
ns3::ConstantRateWifiManager::DoReportRtsOk
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:93
ns3::ConstantRateWifiManager::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
constant-rate-wifi-manager.cc:37
ns3::ConstantRateWifiManager::DoReportDataFailed
void DoReportDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:87
ns3::ConstantRateWifiManager::m_dataMode
WifiMode m_dataMode
Wifi mode for unicast Data frames.
Definition:
constant-rate-wifi-manager.h:62
ns3::ConstantRateWifiManager::DoReportFinalDataFailed
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Definition:
constant-rate-wifi-manager.cc:113
ns3::ConstantRateWifiManager::DoCreateStation
WifiRemoteStation * DoCreateStation(void) const override
Definition:
constant-rate-wifi-manager.cc:66
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::WifiMode
represent a single transmission mode
Definition:
wifi-mode.h:48
ns3::WifiRemoteStationManager
hold a list of per-remote-station state.
Definition:
wifi-remote-station-manager.h:121
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:86
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::WifiRemoteStation
hold per-remote-station state.
Definition:
wifi-remote-station-manager.h:62
src
wifi
model
rate-control
constant-rate-wifi-manager.h
Generated on Tue Feb 6 2024 19:21:29 for ns-3 by
1.9.1