A Discrete-Event Network Simulator
API
wave-mac-low.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 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  * Junling Bu <linlinjavaer@gmail.com>
20  */
21 #ifndef WAVE_MAC_LOW_H
22 #define WAVE_MAC_LOW_H
23 
24 #include "ns3/mac-low.h"
25 #include "ns3/msdu-aggregator.h"
26 #include "ns3/mpdu-aggregator.h"
27 #include "ns3/wifi-psdu.h"
28 #include "wave-net-device.h"
29 
30 namespace ns3 {
31 class WaveNetDevice;
32 class WifiMacQueueItem;
33 
49 class WaveMacLow : public MacLow
50 {
51 public:
56  static TypeId GetTypeId (void);
57  WaveMacLow ();
58  virtual ~WaveMacLow ();
59 
64 
73  virtual void StartTransmission (Ptr<WifiMacQueueItem> mpdu,
75  Ptr<Txop> txop);
76 private:
86 
89 };
90 
91 } // namespace ns3
92 
93 #endif /* WAVE_MAC_LOW_H*/
This class is the subclass of MacLow to provide support for MAC extension (1) allows higher layer con...
Definition: wave-mac-low.h:49
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
virtual WifiTxVector GetDataTxVector(Ptr< const WifiMacQueueItem > item) const
Return a TXVECTOR for the DATA frame given the destination.
Definition: wave-mac-low.cc:63
static TypeId GetTypeId(void)
Get the type ID.
Definition: wave-mac-low.cc:36
Ptr< ChannelScheduler > m_scheduler
the channel scheduler
Definition: wave-mac-low.h:87
control how a packet is transmitted.
virtual void StartTransmission(Ptr< WifiMacQueueItem > mpdu, MacLowTransmissionParameters parameters, Ptr< Txop > txop)
virtual ~WaveMacLow()
Definition: wave-mac-low.cc:49
Every class exported by the ns3 library is enclosed in the ns3 namespace.
handle RTS/CTS/DATA/ACK transactions.
Definition: mac-low.h:59
Ptr< ChannelCoordinator > m_coordinator
the channel coordinator
Definition: wave-mac-low.h:88
a unique identifier for an interface.
Definition: type-id.h:58
void SetWaveNetDevice(Ptr< WaveNetDevice > device)
Definition: wave-mac-low.cc:55