A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
vht-frame-exchange-manager.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Universita' degli Studi di Napoli Federico II
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Stefano Avallone <stavallo@unina.it>
7 */
8
9#ifndef VHT_FRAME_EXCHANGE_MANAGER_H
10#define VHT_FRAME_EXCHANGE_MANAGER_H
11
12#include "ns3/ht-frame-exchange-manager.h"
13
14namespace ns3
15{
16
17/**
18 * \ingroup wifi
19 *
20 * VhtFrameExchangeManager handles the frame exchange sequences
21 * for VHT stations.
22 */
24{
25 public:
26 /**
27 * \brief Get the type ID.
28 * \return the object TypeId
29 */
30 static TypeId GetTypeId();
32 ~VhtFrameExchangeManager() override;
33
34 protected:
35 Ptr<WifiPsdu> GetWifiPsdu(Ptr<WifiMpdu> mpdu, const WifiTxVector& txVector) const override;
36 uint32_t GetPsduSize(Ptr<const WifiMpdu> mpdu, const WifiTxVector& txVector) const override;
37};
38
39} // namespace ns3
40
41#endif /* VHT_FRAME_EXCHANGE_MANAGER_H */
HtFrameExchangeManager handles the frame exchange sequences for HT stations.
Smart pointer class similar to boost::intrusive_ptr.
a unique identifier for an interface.
Definition type-id.h:48
VhtFrameExchangeManager handles the frame exchange sequences for VHT stations.
static TypeId GetTypeId()
Get the type ID.
Ptr< WifiPsdu > GetWifiPsdu(Ptr< WifiMpdu > mpdu, const WifiTxVector &txVector) const override
Get a PSDU containing the given MPDU.
uint32_t GetPsduSize(Ptr< const WifiMpdu > mpdu, const WifiTxVector &txVector) const override
Get the size in bytes of the given MPDU, which is to be transmitted with the given TXVECTOR.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Every class exported by the ns3 library is enclosed in the ns3 namespace.