#include <stdint.h>
#include <string>
#include <vector>
#include <ostream>
#include "ns3/attribute-helper.h"
#include "ns3/wifi-phy-standard.h"
Go to the source code of this file.
Classes | |
class | ns3::WifiMode |
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lookup in a global array the characteristics of the associated transmission mode. More... | |
class | ns3::WifiModeFactory |
create WifiMode class instances and keep track of them. More... | |
struct | ns3::WifiModeFactory::WifiModeItem |
This is the data associated to a unique WifiMode. More... | |
Namespaces | |
ns3 | |
Every class exported by the ns3 library is enclosed in the ns3 namespace. | |
Typedefs | |
typedef std::vector< uint8_t > | ns3::WifiMcsList |
A list of Wi-Fi Modulation and Coding Scheme (MCS). More... | |
typedef WifiMcsList::const_iterator | ns3::WifiMcsListIterator |
An iterator for WifiMcsList vector. More... | |
typedef std::vector< WifiMode > | ns3::WifiModeList |
In various parts of the code, folk are interested in maintaining a list of transmission modes. More... | |
typedef WifiModeList::const_iterator | ns3::WifiModeListIterator |
An iterator for WifiModeList vector. More... | |
Enumerations | |
enum | ns3::WifiCodeRate { ns3::WIFI_CODE_RATE_UNDEFINED, ns3::WIFI_CODE_RATE_3_4, ns3::WIFI_CODE_RATE_2_3, ns3::WIFI_CODE_RATE_1_2, ns3::WIFI_CODE_RATE_5_6 } |
This enumeration defines the various convolutional coding rates used for the OFDM transmission modes in the IEEE 802.11 standard. More... | |
enum | ns3::WifiModulationClass { ns3::WIFI_MOD_CLASS_UNKNOWN = 0, ns3::WIFI_MOD_CLASS_IR, ns3::WIFI_MOD_CLASS_FHSS, ns3::WIFI_MOD_CLASS_DSSS, ns3::WIFI_MOD_CLASS_ERP_PBCC, ns3::WIFI_MOD_CLASS_DSSS_OFDM, ns3::WIFI_MOD_CLASS_ERP_OFDM, ns3::WIFI_MOD_CLASS_OFDM, ns3::WIFI_MOD_CLASS_HT } |
This enumeration defines the modulation classes per IEEE 802.11-2007, Section 9.6.1, Table 9-2. More... | |
Functions | |
ns3::ATTRIBUTE_HELPER_HEADER (WifiMode) | |
std::ostream & | ns3::operator<< (std::ostream &os, const WifiMode &mode) |
Serialize WifiMode to ostream (human-readable). More... | |
bool | ns3::operator== (const WifiMode &a, const WifiMode &b) |
Check if the two WifiModes are identical. More... | |
std::istream & | ns3::operator>> (std::istream &is, WifiMode &mode) |
Serialize WifiMode from istream (human-readable). More... | |