Skip to content

Commit

Permalink
wifi: Extend print functions for action frames
Browse files Browse the repository at this point in the history
  • Loading branch information
sderonne committed Nov 23, 2024
1 parent c16b9b8 commit b22b1ec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/wifi/model/mgt-action-headers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,9 @@ MgtAddBaRequestHeader::GetInstanceTypeId() const
void
MgtAddBaRequestHeader::Print(std::ostream& os) const
{
os << "A-MSDU support=" << m_amsduSupport << " Policy=" << +m_policy << " TID=" << +m_tid
<< " Buffer size=" << m_bufferSize << " Timeout=" << m_timeoutValue
<< " Starting seq=" << m_startingSeq;
}

uint32_t
Expand Down Expand Up @@ -928,7 +931,8 @@ MgtAddBaResponseHeader::GetInstanceTypeId() const
void
MgtAddBaResponseHeader::Print(std::ostream& os) const
{
os << "status code=" << m_code;
os << "Status code=" << m_code << "A-MSDU support=" << m_amsduSupport << " Policy=" << +m_policy
<< " TID=" << +m_tid << " Buffer size=" << m_bufferSize << " Timeout=" << m_timeoutValue;
}

uint32_t
Expand Down Expand Up @@ -1106,6 +1110,7 @@ MgtDelBaHeader::GetInstanceTypeId() const
void
MgtDelBaHeader::Print(std::ostream& os) const
{
os << "Initiator=" << m_initiator << " TID=" << +m_tid;
}

uint32_t
Expand Down

0 comments on commit b22b1ec

Please sign in to comment.