A Discrete-Event Network Simulator
API
wifi-net-device.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 WIFI_NET_DEVICE_H
22 #define WIFI_NET_DEVICE_H
23 
24 #include "ns3/net-device.h"
25 #include "ns3/traced-callback.h"
26 
27 namespace ns3 {
28 
29 class WifiRemoteStationManager;
30 class WifiPhy;
31 class WifiMac;
32 class HtConfiguration;
33 class VhtConfiguration;
34 class HeConfiguration;
35 
37 static const uint16_t MAX_MSDU_SIZE = 2304;
38 
53 class WifiNetDevice : public NetDevice
54 {
55 public:
60  static TypeId GetTypeId (void);
61 
62  WifiNetDevice ();
63  virtual ~WifiNetDevice ();
64 
68  void SetMac (const Ptr<WifiMac> mac);
72  void SetPhy (const Ptr<WifiPhy> phy);
80  Ptr<WifiMac> GetMac (void) const;
84  Ptr<WifiPhy> GetPhy (void) const;
89 
93  void SetHtConfiguration (Ptr<HtConfiguration> htConfiguration);
101  void SetVhtConfiguration (Ptr<VhtConfiguration> vhtConfiguration);
109  void SetHeConfiguration (Ptr<HeConfiguration> heConfiguration);
114 
115  void SetIfIndex (const uint32_t index) override;
116  uint32_t GetIfIndex (void) const override;
117  Ptr<Channel> GetChannel (void) const override;
118  void SetAddress (Address address) override;
119  Address GetAddress (void) const override;
120  bool SetMtu (const uint16_t mtu) override;
121  uint16_t GetMtu (void) const override;
122  bool IsLinkUp (void) const override;
123  void AddLinkChangeCallback (Callback<void> callback) override;
124  bool IsBroadcast (void) const override;
125  Address GetBroadcast (void) const override;
126  bool IsMulticast (void) const override;
127  Address GetMulticast (Ipv4Address multicastGroup) const override;
128  bool IsPointToPoint (void) const override;
129  bool IsBridge (void) const override;
130  bool Send (Ptr<Packet> packet, const Address& dest, uint16_t protocolNumber) override;
131  Ptr<Node> GetNode (void) const override;
132  void SetNode (const Ptr<Node> node) override;
133  bool NeedsArp (void) const override;
135  Address GetMulticast (Ipv6Address addr) const override;
136  bool SendFrom (Ptr<Packet> packet, const Address& source, const Address& dest, uint16_t protocolNumber) override;
138  bool SupportsSendFrom (void) const override;
139 
140 
141 protected:
142  void DoDispose (void) override;
143  void DoInitialize (void) override;
152  void ForwardUp (Ptr<const Packet> packet, Mac48Address from, Mac48Address to);
153 
154 
155 private:
162  WifiNetDevice (const WifiNetDevice &o);
163 
172 
177  void LinkUp (void);
181  void LinkDown (void);
186  void CompleteConfig (void);
187 
197 
200 
201  uint32_t m_ifIndex;
202  bool m_linkUp;
204  mutable uint16_t m_mtu;
206 };
207 
208 } //namespace ns3
209 
210 #endif /* WIFI_NET_DEVICE_H */
bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber) override
bool m_linkUp
link up
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
Ptr< Node > GetNode(void) const override
TracedCallback< Ptr< const Packet >, Mac48Address > m_txLogger
transmit trace callback
Ptr< HeConfiguration > GetHeConfiguration(void) const
void LinkUp(void)
Set that the link is up.
Ptr< HeConfiguration > m_heConfiguration
the HeConfiguration
bool IsMulticast(void) const override
Forward calls to a chain of Callback.
Ptr< WifiRemoteStationManager > m_stationManager
the station manager
void ForwardUp(Ptr< const Packet > packet, Mac48Address from, Mac48Address to)
Receive a packet from the lower layer and pass the packet up the stack.
Address GetMulticast(Ipv4Address multicastGroup) const override
Make and return a MAC multicast address using the provided multicast group.
void SetHtConfiguration(Ptr< HtConfiguration > htConfiguration)
void DoInitialize(void) override
Initialize() implementation.
TracedCallback< Ptr< const Packet >, Mac48Address > m_rxLogger
receive trace callback
void DoDispose(void) override
Destructor implementation.
a polymophic address class
Definition: address.h:90
phy
Definition: third.py:93
uint16_t m_mtu
MTU.
void SetHeConfiguration(Ptr< HeConfiguration > heConfiguration)
void SetAddress(Address address) override
Set the address of this interface.
Ptr< WifiRemoteStationManager > GetRemoteStationManager(void) const
uint32_t GetIfIndex(void) const override
void SetMac(const Ptr< WifiMac > mac)
static const uint16_t MAX_MSDU_SIZE
This value conforms to the 802.11 specification.
Address GetAddress(void) const override
Ptr< WifiMac > m_mac
the MAC
mac
Definition: third.py:99
Ptr< WifiPhy > m_phy
the phy
Hold together all Wifi-related objects.
bool NeedsArp(void) const override
bool IsPointToPoint(void) const override
Return true if the net device is on a point-to-point link.
void SetReceiveCallback(NetDevice::ReceiveCallback cb) override
bool SetMtu(const uint16_t mtu) override
Ptr< WifiPhy > GetPhy(void) const
Every class exported by the ns3 library is enclosed in the ns3 namespace.
TracedCallback m_linkChanges
link change callback
address
Definition: first.py:44
bool IsBroadcast(void) const override
Ptr< Node > m_node
the node
an EUI-48 address
Definition: mac48-address.h:43
uint32_t m_ifIndex
IF index.
Ptr< Channel > GetChannel(void) const override
Address GetBroadcast(void) const override
void SetIfIndex(const uint32_t index) override
bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber) override
bool IsLinkUp(void) const override
Describes an IPv6 address.
Definition: ipv6-address.h:49
void SetPhy(const Ptr< WifiPhy > phy)
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:41
Ptr< WifiMac > GetMac(void) const
NetDevice::ReceiveCallback m_forwardUp
forward up callback
bool IsBridge(void) const override
Return true if the net device is acting as a bridge.
Network layer to device interface.
Definition: net-device.h:95
Ptr< VhtConfiguration > m_vhtConfiguration
the VhtConfiguration
Ptr< HtConfiguration > m_htConfiguration
the HtConfiguration
bool SupportsSendFrom(void) const override
void AddLinkChangeCallback(Callback< void > callback) override
void CompleteConfig(void)
Complete the configuration of this Wi-Fi device by connecting all lower components (e...
WifiNetDevice & operator=(const WifiNetDevice &o)
Assignment operator.
void SetNode(const Ptr< Node > node) override
void LinkDown(void)
Set that the link is down (i.e.
Ptr< VhtConfiguration > GetVhtConfiguration(void) const
Ptr< HtConfiguration > GetHtConfiguration(void) const
a unique identifier for an interface.
Definition: type-id.h:58
uint16_t GetMtu(void) const override
void SetVhtConfiguration(Ptr< VhtConfiguration > vhtConfiguration)
static TypeId GetTypeId(void)
Get the type ID.
NetDevice::PromiscReceiveCallback m_promiscRx
promiscuous receive callback
bool m_configComplete
configuration complete
void SetPromiscReceiveCallback(PromiscReceiveCallback cb) override
void SetRemoteStationManager(const Ptr< WifiRemoteStationManager > manager)