A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
sta-wifi-mac.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2006, 2009 INRIA
4  * Copyright (c) 2009 MIRKO BANCHI
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
20  * Author: Mirko Banchi <mk.banchi@gmail.com>
21  */
22 #ifndef STA_WIFI_MAC_H
23 #define STA_WIFI_MAC_H
24 
25 #include "regular-wifi-mac.h"
26 
27 #include "ns3/event-id.h"
28 #include "ns3/packet.h"
29 #include "ns3/traced-callback.h"
30 
31 #include "supported-rates.h"
32 #include "amsdu-subframe-header.h"
33 
34 namespace ns3 {
35 
36 class MgtAddBaRequestHeader;
37 
43 class StaWifiMac : public RegularWifiMac
44 {
45 public:
46  static TypeId GetTypeId (void);
47 
48  StaWifiMac ();
49  virtual ~StaWifiMac ();
50 
59  virtual void Enqueue (Ptr<const Packet> packet, Mac48Address to);
60 
65  void SetMaxMissedBeacons (uint32_t missed);
79  void SetAssocRequestTimeout (Time timeout);
80 
84  void StartActiveAssociation (void);
85 
86 private:
87  enum MacState
88  {
94  };
95 
96  void SetActiveProbing (bool enable);
97  bool GetActiveProbing (void) const;
98  virtual void Receive (Ptr<Packet> packet, const WifiMacHeader *hdr);
99  void SendProbeRequest (void);
100  void SendAssociationRequest (void);
101  void TryToEnsureAssociated (void);
102  void AssocRequestTimeout (void);
103  void ProbeRequestTimeout (void);
104  bool IsAssociated (void) const;
105  bool IsWaitAssocResp (void) const;
106  void MissedBeacons (void);
107  void RestartBeaconWatchdog (Time delay);
108  SupportedRates GetSupportedRates (void) const;
109  void SetState (enum MacState value);
110 
111  HtCapabilities GetHtCapabilities (void) const;
112 
113 
122 
125 };
126 
127 } // namespace ns3
128 
129 #endif /* STA_WIFI_MAC_H */
bool IsWaitAssocResp(void) const
TracedCallback< Mac48Address > m_deAssocLogger
Definition: sta-wifi-mac.h:124
SupportedRates GetSupportedRates(void) const
keep track of time values and allow control of global simulation resolution
Definition: nstime.h:81
Time m_assocRequestTimeout
Definition: sta-wifi-mac.h:116
virtual void Receive(Ptr< Packet > packet, const WifiMacHeader *hdr)
void SendAssociationRequest(void)
void AssocRequestTimeout(void)
Time m_probeRequestTimeout
Definition: sta-wifi-mac.h:115
void SetProbeRequestTimeout(Time timeout)
forward calls to a chain of CallbackAn ns3::TracedCallback has almost exactly the same API as a norma...
The Ht Capabilities Information ElementThis class knows how to serialise and deserialise the Ht Capab...
TracedCallback< Mac48Address > m_assocLogger
Definition: sta-wifi-mac.h:123
EventId m_assocRequestEvent
Definition: sta-wifi-mac.h:118
ns3::Time timeout
The Supported Rates Information ElementThis class knows how to serialise and deserialise the Supporte...
void SetAssocRequestTimeout(Time timeout)
void SendProbeRequest(void)
base class for all MAC-level wifi objects.This class encapsulates all the low-level MAC functionality...
void ProbeRequestTimeout(void)
void MissedBeacons(void)
bool GetActiveProbing(void) const
void SetState(enum MacState value)
HtCapabilities GetHtCapabilities(void) const
uint32_t m_maxMissedBeacons
Definition: sta-wifi-mac.h:121
void StartActiveAssociation(void)
void SetMaxMissedBeacons(uint32_t missed)
EventId m_beaconWatchdog
Definition: sta-wifi-mac.h:119
virtual ~StaWifiMac()
static TypeId GetTypeId(void)
Definition: sta-wifi-mac.cc:66
an EUI-48 address
Definition: mac48-address.h:41
void RestartBeaconWatchdog(Time delay)
void TryToEnsureAssociated(void)
void SetActiveProbing(bool enable)
an identifier for simulation events.
Definition: event-id.h:46
virtual void Enqueue(Ptr< const Packet > packet, Mac48Address to)
enum MacState m_state
Definition: sta-wifi-mac.h:114
Time m_beaconWatchdogEnd
Definition: sta-wifi-mac.h:120
EventId m_probeRequestEvent
Definition: sta-wifi-mac.h:117
bool IsAssociated(void) const
a unique identifier for an interface.
Definition: type-id.h:49