From a890378d968361cf6910a7a294ca03063201cc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Wed, 28 Nov 2018 20:26:09 +0100 Subject: [PATCH] wifi: Fix missing Doxygen in MacLow --- src/wifi/model/mac-low.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/mac-low.h b/src/wifi/model/mac-low.h index 06f98401e..f4ff70693 100644 --- a/src/wifi/model/mac-low.h +++ b/src/wifi/model/mac-low.h @@ -444,9 +444,19 @@ public: * This function decides if a CF frame can be transmitted in the current CFP. */ bool CanTransmitNextCfFrame (void) const; - //TODO + /** + * Return the maximum A-MSDU size in bytes for a given AC. + * + * \param ac the AC index + * \return the maximum A-MSDU size (in bytes) + */ uint16_t GetMaxAmsduSize (AcIndex ac) const; - //TODO + /** + * Return the maximum A-MPDU size in bytes for a given AC. + * + * \param ac the AC index + * \return the maximum A-MPDU size (in bytes) + */ uint32_t GetMaxAmpduSize (AcIndex ac) const;