View | Details | Raw Unified | Return to bug 2925
Collapse All | Expand All

(-)a/src/wifi/model/mac-low.cc (-1 / +4 lines)
 Lines 1541-1548   MacLow::BlockAckTimeout (void) Link Here 
1541
  m_currentTxop = 0;
1541
  m_currentTxop = 0;
1542
  m_ampdu = false;
1542
  m_ampdu = false;
1543
  uint8_t tid = GetTid (m_currentPacket, m_currentHdr);
1543
  uint8_t tid = GetTid (m_currentPacket, m_currentHdr);
1544
  // Recover the number of MPDUs in the A-MPDU transmitted
1545
  AmpduTag ampdu;
1546
  m_currentPacket->RemovePacketTag (ampdu);
1547
  txop->MissedBlockAck (ampdu.GetRemainingNbOfMpdus() + 1);
1544
  FlushAggregateQueue (tid);
1548
  FlushAggregateQueue (tid);
1545
  txop->MissedBlockAck (static_cast<uint8_t> (m_aggregateQueue[tid]->GetNPackets()));
1546
}
1549
}
1547
1550
1548
void
1551
void

Return to bug 2925