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 NetDeviceQueueInterface;
33 class QueueItem;
34 
36 static const uint16_t MAX_MSDU_SIZE = 2304;
37 
52 class WifiNetDevice : public NetDevice
53 {
54 public:
59  static TypeId GetTypeId (void);
60 
61  WifiNetDevice ();
62  virtual ~WifiNetDevice ();
63 
67  void SetMac (const Ptr<WifiMac> mac);
71  void SetPhy (const Ptr<WifiPhy> phy);
79  Ptr<WifiMac> GetMac (void) const;
83  Ptr<WifiPhy> GetPhy (void) const;
88 
89 
90  //inherited from NetDevice base class.
91  void SetIfIndex (const uint32_t index);
92  uint32_t GetIfIndex (void) const;
93  Ptr<Channel> GetChannel (void) const;
94  void SetAddress (Address address);
95  Address GetAddress (void) const;
96  bool SetMtu (const uint16_t mtu);
97  uint16_t GetMtu (void) const;
98  bool IsLinkUp (void) const;
99  void AddLinkChangeCallback (Callback<void> callback);
100  bool IsBroadcast (void) const;
101  Address GetBroadcast (void) const;
102  bool IsMulticast (void) const;
103  Address GetMulticast (Ipv4Address multicastGroup) const;
104  bool IsPointToPoint (void) const;
105  bool IsBridge (void) const;
106  bool Send (Ptr<Packet> packet, const Address& dest, uint16_t protocolNumber);
107  Ptr<Node> GetNode (void) const;
108  void SetNode (const Ptr<Node> node);
109  bool NeedsArp (void) const;
111  Address GetMulticast (Ipv6Address addr) const;
112  bool SendFrom (Ptr<Packet> packet, const Address& source, const Address& dest, uint16_t protocolNumber);
114  bool SupportsSendFrom (void) const;
115 
116 
117 protected:
118  void DoDispose (void);
119  void DoInitialize (void);
120  void NotifyNewAggregate (void);
129  void ForwardUp (Ptr<Packet> packet, Mac48Address from, Mac48Address to);
130 
131 
132 private:
139  WifiNetDevice (const WifiNetDevice &o);
140 
149 
154  void LinkUp (void);
158  void LinkDown (void);
163  void CompleteConfig (void);
167  void FlowControlConfig (void);
168 
211  uint8_t SelectQueue (Ptr<QueueItem> item) const;
212 
220 
223 
224  uint32_t m_ifIndex;
225  bool m_linkUp;
227  mutable uint16_t m_mtu;
229 };
230 
231 } //namespace ns3
232 
233 #endif /* WIFI_NET_DEVICE_H */
bool m_linkUp
link up
bool SetMtu(const uint16_t mtu)
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
TracedCallback< Ptr< const Packet >, Mac48Address > m_txLogger
transmit trace callback
void LinkUp(void)
Set that the link is up.
Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
Forward calls to a chain of Callback.
Ptr< WifiRemoteStationManager > m_stationManager
the station manager
bool SupportsSendFrom(void) const
TracedCallback< Ptr< const Packet >, Mac48Address > m_rxLogger
receive trace callback
void ForwardUp(Ptr< Packet > packet, Mac48Address from, Mac48Address to)
Receive a packet from the lower layer and pass the packet up the stack.
uint32_t GetIfIndex(void) const
Address GetAddress(void) const
uint16_t GetMtu(void) const
a polymophic address class
Definition: address.h:90
phy
Definition: third.py:86
uint16_t m_mtu
MTU.
void DoDispose(void)
Destructor implementation.
Ptr< WifiRemoteStationManager > GetRemoteStationManager(void) const
void SetMac(const Ptr< WifiMac > mac)
uint8_t SelectQueue(Ptr< QueueItem > item) const
Determine the tx queue for a given packet.
static const uint16_t MAX_MSDU_SIZE
This value conforms to the 802.11 specification.
bool IsMulticast(void) const
Ptr< WifiMac > m_mac
the MAC
mac
Definition: third.py:92
Ptr< WifiPhy > m_phy
the phy
Address GetBroadcast(void) const
Hold together all Wifi-related objects.
Ptr< Channel > GetChannel(void) const
bool IsBroadcast(void) const
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:37
bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
Ptr< Node > m_node
the node
void FlowControlConfig(void)
Perform the actions needed to support flow control and dynamic queue limits.
an EUI-48 address
Definition: mac48-address.h:43
void DoInitialize(void)
Initialize() implementation.
uint32_t m_ifIndex
IF index.
bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
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:40
void SetIfIndex(const uint32_t index)
Ptr< WifiMac > GetMac(void) const
NetDevice::ReceiveCallback m_forwardUp
forward up callback
bool IsBridge(void) const
Return true if the net device is acting as a bridge.
bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
Network layer to device interface.
Definition: net-device.h:95
void AddLinkChangeCallback(Callback< void > callback)
void CompleteConfig(void)
Complete the configuration of this Wi-Fi device by connecting all lower components (e...
void NotifyNewAggregate(void)
Notify all Objects aggregated to this one of a new Object being aggregated.
void SetPromiscReceiveCallback(PromiscReceiveCallback cb)
bool IsLinkUp(void) const
WifiNetDevice & operator=(const WifiNetDevice &o)
Assignment operator.
void LinkDown(void)
Set that the link is down (i.e.
Ptr< NetDeviceQueueInterface > m_queueInterface
NetDevice queue interface.
a unique identifier for an interface.
Definition: type-id.h:58
void SetReceiveCallback(NetDevice::ReceiveCallback cb)
static TypeId GetTypeId(void)
Get the type ID.
NetDevice::PromiscReceiveCallback m_promiscRx
promiscious receive callback
bool m_configComplete
configuration complete
void SetNode(const Ptr< Node > node)
void SetAddress(Address address)
Set the address of this interface.
bool NeedsArp(void) const
void SetRemoteStationManager(const Ptr< WifiRemoteStationManager > manager)
Ptr< Node > GetNode(void) const