A Discrete-Event Network Simulator
API
mac-rx-middle.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2005 INRIA
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
18  */
19 
20 #ifndef MAC_RX_MIDDLE_H
21 #define MAC_RX_MIDDLE_H
22 
23 #include "ns3/callback.h"
24 #include "ns3/simple-ref-count.h"
25 
26 #include <map>
27 
28 namespace ns3
29 {
30 
31 class WifiMacHeader;
32 class OriginatorRxStatus;
33 class Packet;
34 class Mac48Address;
35 class WifiMpdu;
36 
42 class MacRxMiddle : public SimpleRefCount<MacRxMiddle>
43 {
44  public:
48  typedef Callback<void, Ptr<const WifiMpdu>, uint8_t /* link ID */> ForwardUpCallback;
49 
50  MacRxMiddle();
51  ~MacRxMiddle();
52 
59 
66  void Receive(Ptr<const WifiMpdu> mpdu, uint8_t linkId);
67 
68  private:
70  friend class MacRxMiddleTest;
91  bool IsDuplicate(const WifiMacHeader* hdr, OriginatorRxStatus* originator) const;
108  const WifiMacHeader* hdr,
109  OriginatorRxStatus* originator);
110 
114  typedef std::map<Mac48Address, OriginatorRxStatus*, std::less<>> Originators;
118  typedef std::map<std::pair<Mac48Address, uint8_t>, OriginatorRxStatus*, std::less<>>
123  typedef std::map<Mac48Address, OriginatorRxStatus*, std::less<>>::iterator OriginatorsI;
127  typedef std::map<std::pair<Mac48Address, uint8_t>, OriginatorRxStatus*, std::less<>>::iterator
129 
133 };
134 
135 } // namespace ns3
136 
137 #endif /* MAC_RX_MIDDLE_H */
Callback template class.
Definition: callback.h:438
This class handles duplicate detection and recomposition of fragments.
Definition: mac-rx-middle.h:43
friend class MacRxMiddleTest
allow MacRxMiddleTest associated class access
Definition: mac-rx-middle.h:70
void SetForwardCallback(ForwardUpCallback callback)
Set a callback to forward the packet up.
Originators m_originatorStatus
originator status
Ptr< const Packet > HandleFragments(Ptr< const Packet > packet, const WifiMacHeader *hdr, OriginatorRxStatus *originator)
Check if the received packet is a fragment and handle it appropriately.
bool IsDuplicate(const WifiMacHeader *hdr, OriginatorRxStatus *originator) const
Check if we have already received the packet from the sender before (by looking at the sequence contr...
std::map< Mac48Address, OriginatorRxStatus *, std::less<> > Originators
typedef for a map between address and OriginatorRxStatus
std::map< Mac48Address, OriginatorRxStatus *, std::less<> >::iterator OriginatorsI
typedef for an iterator for Originators
void Receive(Ptr< const WifiMpdu > mpdu, uint8_t linkId)
Receive an MPDU on the given link.
QosOriginators m_qosOriginatorStatus
QOS originator status.
Callback< void, Ptr< const WifiMpdu >, uint8_t > ForwardUpCallback
typedef for callback
Definition: mac-rx-middle.h:48
ForwardUpCallback m_callback
forward up callback
OriginatorRxStatus * Lookup(const WifiMacHeader *hdr)
Look up for OriginatorRxStatus associated with the sender address (by looking at ADDR2 field in the h...
std::map< std::pair< Mac48Address, uint8_t >, OriginatorRxStatus *, std::less<> > QosOriginators
typedef for a map between address, OriginatorRxStatus, and Traffic ID
std::map< std::pair< Mac48Address, uint8_t >, OriginatorRxStatus *, std::less<> >::iterator QosOriginatorsI
typedef for an iterator for QosOriginators
A class to keep track of the packet originator status.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
A template-based reference counting class.
Implements the IEEE 802.11 MAC header.
Every class exported by the ns3 library is enclosed in the ns3 namespace.