src/wifi/model/mgt-headers.cc
changeset 11622 d0da0aa55bda
parent 11589 d3bfef4544ec
child 11628 243b71de25a0
--- a/src/wifi/model/mgt-headers.cc	Tue Sep 01 22:02:05 2015 +0200
+++ b/src/wifi/model/mgt-headers.cc	Tue Sep 01 22:44:51 2015 +0200
@@ -922,6 +922,12 @@
 }
 
 void
+MgtAddBaRequestHeader::SetStartingSequenceControl (uint16_t seqControl)
+{
+  m_startingSeq = (seqControl >> 4) & 0x0fff;
+}
+
+void
 MgtAddBaRequestHeader::SetAmsduSupport (bool supported)
 {
   m_amsduSupport = supported;
@@ -969,12 +975,6 @@
   return (m_startingSeq << 4) & 0xfff0;
 }
 
-void
-MgtAddBaRequestHeader::SetStartingSequenceControl (uint16_t seqControl)
-{
-  m_startingSeq = (seqControl >> 4) & 0x0fff;
-}
-
 uint16_t
 MgtAddBaRequestHeader::GetParameterSet (void) const
 {