src/wifi/model/mac-rx-middle.h
changeset 11450 9f4ae69f12b7
parent 10483 e3a02ed14587
--- a/src/wifi/model/mac-rx-middle.h	Tue Jun 16 13:13:06 2015 -0700
+++ b/src/wifi/model/mac-rx-middle.h	Sun Jun 21 00:23:45 2015 +0200
@@ -56,6 +56,8 @@
   void SetForwardCallback (ForwardUpCallback callback);
 
   void Receive (Ptr<Packet> packet, const WifiMacHeader *hdr);
+
+
 private:
   friend class MacRxMiddleTest;
   /**
@@ -64,6 +66,7 @@
    * The method creates a new OriginatorRxStatus if one is not already presented.
    *
    * \param hdr
+   *
    * \return OriginatorRxStatus
    */
   OriginatorRxStatus* Lookup (const WifiMacHeader* hdr);
@@ -73,6 +76,7 @@
    *
    * \param hdr
    * \param originator
+   *
    * \return true if we already received the packet previously,
    *         false otherwise
    */
@@ -88,6 +92,7 @@
    * \param packet
    * \param hdr
    * \param originator
+   *
    * \return a packet if the packet is successfully reassembled (or not a fragment),
    *         0 if we failed to reassemble the packet (e.g. missing fragments/out-of-order).
    */
@@ -110,12 +115,12 @@
    * typedef for an interator for QosOriginators
    */
   typedef std::map <std::pair<Mac48Address, uint8_t>, OriginatorRxStatus *, std::less<std::pair<Mac48Address,uint8_t> > >::iterator QosOriginatorsI;
+
   Originators m_originatorStatus;
   QosOriginators m_qosOriginatorStatus;
   ForwardUpCallback m_callback;
 };
 
-} // namespace ns3
-
+} //namespace ns3
 
 #endif /* MAC_RX_MIDDLE_H */