wifi: Print SIG-B mode in WifiTxVector

This commit is contained in:
Sébastien Deronne
2023-01-08 17:36:54 +01:00
committed by Sebastien Deronne
parent 6a355e6901
commit d491ed963f

View File

@@ -589,6 +589,10 @@ operator<<(std::ostream& os, const WifiTxVector& v)
{
os << " Length: " << v.GetLength();
}
if (ns3::IsDlMu(v.GetPreambleType()))
{
os << " SIG-B mode: " << v.GetSigBMode();
}
if (v.IsMu())
{
WifiTxVector::HeMuUserInfoMap userInfoMap = v.GetHeMuUserInfoMap();