From 2704990f2006969e33b322cce367d53eb1dbd13a Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Thu, 13 Aug 2015 10:24:42 -0700 Subject: [PATCH] fix mesh doxygen --- src/mesh/model/dot11s/hwmp-protocol.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mesh/model/dot11s/hwmp-protocol.h b/src/mesh/model/dot11s/hwmp-protocol.h index 10348b2fa..4444e5a31 100644 --- a/src/mesh/model/dot11s/hwmp-protocol.h +++ b/src/mesh/model/dot11s/hwmp-protocol.h @@ -132,9 +132,13 @@ private: ///\name Interaction with HWMP MAC plugin //\{ + ///\brief Handler for receiving Path Request void ReceivePreq (IePreq preq, Mac48Address from, uint32_t interface, Mac48Address fromMp, uint32_t metric); + ///\brief Handler for receiving Path Reply void ReceivePrep (IePrep prep, Mac48Address from, uint32_t interface, Mac48Address fromMp, uint32_t metric); + ///\brief Handler for receiving Path Error void ReceivePerr (std::vector, Mac48Address from, uint32_t interface, Mac48Address fromMp); + ///\brief Send Path Reply void SendPrep ( Mac48Address src, Mac48Address dst, @@ -263,7 +267,7 @@ private: std::vector m_rqueue; /// \name HWMP-protocol parameters - /// These are all Aattributes + /// These are all Attributes /// \{ uint16_t m_maxQueueSize; uint8_t m_dot11MeshHWMPmaxPREQretries;