src/wifi/model/mpdu-aggregator.h
changeset 11450 9f4ae69f12b7
parent 11431 7457d8c80db9
child 11628 243b71de25a0
--- a/src/wifi/model/mpdu-aggregator.h	Tue Jun 16 13:13:06 2015 -0700
+++ b/src/wifi/model/mpdu-aggregator.h	Sun Jun 21 00:23:45 2015 +0200
@@ -17,15 +17,14 @@
  *
  * Author: Ghada Badawy <gbadawy@gmail.com>
  */
+
 #ifndef MPDU_AGGREGATOR_H
 #define MPDU_AGGREGATOR_H
 
 #include "ns3/ptr.h"
 #include "ns3/packet.h"
 #include "ns3/object.h"
-
 #include "ampdu-subframe-header.h"
-
 #include <list>
 
 namespace ns3 {
@@ -52,6 +51,7 @@
   /**
    * \param packet Packet we have to insert into <i>aggregatedPacket</i>.
    * \param aggregatedPacket Packet that will contain <i>packet</i>, if aggregation is possible.
+   *
    * \return true if <i>packet</i> can be aggregated to <i>aggregatedPacket</i>, false otherwise.
    *
    * Adds <i>packet</i> to <i>aggregatedPacket</i>. In concrete aggregator's implementation is
@@ -61,11 +61,12 @@
   /**
    * Adds A-MPDU subframe header and padding to each MPDU that is part of an A-MPDU before it is sent.
    */
-  virtual void AddHeaderAndPad (Ptr<Packet> packet,bool last) = 0;
+  virtual void AddHeaderAndPad (Ptr<Packet> packet, bool last) = 0;
   /**
    * \param packetSize size of the packet we want to insert into <i>aggregatedPacket</i>.
    * \param aggregatedPacket packet that will contain the packet of size <i>packetSize</i>, if aggregation is possible.
    * \param blockAckSize size of the piggybacked block ack request
+   *
    * \return true if the packet of size <i>packetSize</i> can be aggregated to <i>aggregatedPacket</i>, false otherwise.
    *
    * This method is used to determine if a packet could be aggregated to an A-MPDU without exceeding the maximum packet size.
@@ -86,6 +87,6 @@
   static DeaggregatedMpdus Deaggregate (Ptr<Packet> aggregatedPacket);
 };
 
-}  // namespace ns3
+}  //namespace ns3
 
 #endif /* MPDU_AGGREGATOR_H */