From e8ed6a539c0c61d2d4c6c143c9d09b3ef3e2a356 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Tue, 20 Aug 2024 14:44:36 +0100 Subject: [PATCH] Fix Doxygen formatting --- doc/manual/source/documentation.rst | 2 +- examples/wireless/wifi-hidden-terminal.cc | 6 ++-- .../model/circular-aperture-antenna-model.cc | 6 ++-- src/aodv/model/aodv-rtable.h | 4 +-- .../hybrid-buildings-propagation-loss-model.h | 2 +- src/core/model/command-line.h | 7 ++-- src/core/model/hash-function.h | 4 +-- src/core/model/hash.h | 2 +- src/core/model/log.cc | 5 +-- src/core/model/log.h | 2 +- src/core/model/matrix-array.h | 2 +- src/core/model/simulator-impl.h | 2 +- src/core/model/vector.h | 36 +++++++++---------- src/core/model/version-defines.h.in | 17 +++++---- src/internet/model/ipv4-route.h | 2 +- src/internet/model/tcp-ledbat.h | 2 +- src/internet/model/tcp-socket-base.h | 6 ++-- src/internet/model/tcp-tx-buffer.h | 4 +-- .../test/tcp-advertised-window-test.cc | 6 ++-- src/internet/test/tcp-general-test.h | 2 +- src/internet/test/tcp-ledbat-test.cc | 9 +++-- src/internet/test/tcp-sack-permitted-test.cc | 2 +- src/lr-wpan/model/lr-wpan-mac-base.h | 2 +- src/lr-wpan/model/lr-wpan-mac.h | 12 +++---- src/lte/model/lte-enb-rrc.h | 2 +- src/mesh/model/dot11s/hwmp-protocol.h | 4 +-- src/mesh/model/dot11s/peer-link-frame.h | 6 ++-- .../dot11s/peer-management-protocol-mac.h | 4 +-- .../model/dot11s/peer-management-protocol.h | 4 +-- src/network/utils/ethernet-trailer.h | 2 +- src/sixlowpan/model/sixlowpan-header.h | 4 +-- src/wifi/model/ht/ht-operation.h | 2 +- src/wimax/model/service-flow-manager.h | 14 ++++---- 33 files changed, 98 insertions(+), 88 deletions(-) diff --git a/doc/manual/source/documentation.rst b/doc/manual/source/documentation.rst index 2395d0fb5..d16108a22 100644 --- a/doc/manual/source/documentation.rst +++ b/doc/manual/source/documentation.rst @@ -555,7 +555,7 @@ usage for |ns3|. * \ingroup foo * * FooBar packet type. - */ + */ class FooBar * Did you know ``typedefs`` can have formal arguments? This enables diff --git a/examples/wireless/wifi-hidden-terminal.cc b/examples/wireless/wifi-hidden-terminal.cc index 9c7d94180..a0889cb94 100644 --- a/examples/wireless/wifi-hidden-terminal.cc +++ b/examples/wireless/wifi-hidden-terminal.cc @@ -125,7 +125,8 @@ experiment(bool enableCtsRts, std::string wifiManager) cbrApps.Add(onOffHelper.Install(nodes.Get(0))); // flow 2: node 2 -> node 1 - /** \internal + /** + * \internal * The slightly different start times and data rates are a workaround * for \bugid{388} and \bugid{912} */ @@ -133,7 +134,8 @@ experiment(bool enableCtsRts, std::string wifiManager) onOffHelper.SetAttribute("StartTime", TimeValue(Seconds(1.001))); cbrApps.Add(onOffHelper.Install(nodes.Get(2))); - /** \internal + /** + * \internal * We also use separate UDP applications that will send a single * packet before the CBR flows start. * This is a workaround for the lack of perfect ARP, see \bugid{187} diff --git a/src/antenna/model/circular-aperture-antenna-model.cc b/src/antenna/model/circular-aperture-antenna-model.cc index e409a613a..17f7d8e46 100644 --- a/src/antenna/model/circular-aperture-antenna-model.cc +++ b/src/antenna/model/circular-aperture-antenna-model.cc @@ -33,9 +33,9 @@ #include /** - * \file - * \ingroup antenna - * Class CircularApertureAntennaModel implementation. + * \file + * \ingroup antenna + * Class CircularApertureAntennaModel implementation. */ namespace diff --git a/src/aodv/model/aodv-rtable.h b/src/aodv/model/aodv-rtable.h index dfe52fe58..a5e8a0fe8 100644 --- a/src/aodv/model/aodv-rtable.h +++ b/src/aodv/model/aodv-rtable.h @@ -84,7 +84,7 @@ class RoutingTableEntry ~RoutingTableEntry(); - ///\name Precursors management + /// \name Precursors management //\{ /** * Insert precursor in precursor list if it doesn't yet exist in the list @@ -429,7 +429,7 @@ class RoutingTable */ RoutingTable(Time t); - ///\name Handle lifetime of invalid route + /// \name Handle lifetime of invalid route //\{ /** * Get the lifetime of a bad link diff --git a/src/buildings/model/hybrid-buildings-propagation-loss-model.h b/src/buildings/model/hybrid-buildings-propagation-loss-model.h index 99b202544..53dbec79e 100644 --- a/src/buildings/model/hybrid-buildings-propagation-loss-model.h +++ b/src/buildings/model/hybrid-buildings-propagation-loss-model.h @@ -39,7 +39,7 @@ class Kun2600MhzPropagationLossModel; * \ingroup buildings * \ingroup propagation * - * \brief The HybridBuildingsPropagationModel is a compound of different models able to evaluate + * \brief The HybridBuildingsPropagationModel is a compound of different models able to evaluate * the pathloss from 200 to 2600 MHz, in different environments and with buildings (i.e., indoor and * outdoor communications). * diff --git a/src/core/model/command-line.h b/src/core/model/command-line.h index 60d42f1cf..a6f1f3bb0 100644 --- a/src/core/model/command-line.h +++ b/src/core/model/command-line.h @@ -466,7 +466,7 @@ class CommandLine /** * \ingroup commandline - *\brief An argument Item assigning to POD + * \brief An argument Item assigning to POD */ template class UserItem : public Item @@ -672,8 +672,9 @@ class CommandLine }; // class CommandLine -/** \ingroup commandline - * \defgroup commandlinehelper Helpers to specialize UserItem +/** + * \ingroup commandline + * \defgroup commandlinehelper Helpers to specialize UserItem */ /** * \ingroup commandlinehelper diff --git a/src/core/model/hash-function.h b/src/core/model/hash-function.h index 0e6f353ff..98ce07407 100644 --- a/src/core/model/hash-function.h +++ b/src/core/model/hash-function.h @@ -42,9 +42,9 @@ namespace Hash { /** - * \ingroup hash + * \ingroup hash * - * \brief Hash function implementation base class. + * \brief Hash function implementation base class. */ class Implementation : public SimpleRefCount { diff --git a/src/core/model/hash.h b/src/core/model/hash.h index c9ef913d3..c32b40c52 100644 --- a/src/core/model/hash.h +++ b/src/core/model/hash.h @@ -41,7 +41,7 @@ namespace ns3 * \ingroup core * \defgroup hash Hash Functions * - * \brief Generic Hash function interface. + * \brief Generic Hash function interface. * * See \ref Hasher for main entry point. * See \ref hash-example.cc for example usage. diff --git a/src/core/model/log.cc b/src/core/model/log.cc index 8f36fd907..bdf4438bf 100644 --- a/src/core/model/log.cc +++ b/src/core/model/log.cc @@ -492,8 +492,9 @@ void LogSetTimePrinter(TimePrinter printer) { g_logTimePrinter = printer; - /** \internal - * This is the only place where we are more or less sure that all log variables + /** + * \internal + * This is the only place where we are more or less sure that all log variables * are registered. See \bugid{1082} for details. */ CheckEnvironmentVariables(); diff --git a/src/core/model/log.h b/src/core/model/log.h index cfc2f90e0..f2d4a5092 100644 --- a/src/core/model/log.h +++ b/src/core/model/log.h @@ -195,7 +195,7 @@ void LogComponentDisableAll(LogLevel level); * using ns3::g_log; * * // Further definitions outside of the ns3 namespace - *\endcode + * \endcode * * \param [in] name The log component name. */ diff --git a/src/core/model/matrix-array.h b/src/core/model/matrix-array.h index 3e3bf6ca0..cf50e998f 100644 --- a/src/core/model/matrix-array.h +++ b/src/core/model/matrix-array.h @@ -200,7 +200,7 @@ class MatrixArray : public ValArray */ MatrixArray FrobeniusNorm() const; /** - *\brief Multiply each matrix in the array by the left and the right matrix. + * \brief Multiply each matrix in the array by the left and the right matrix. * For each page of this MatrixArray the operation performed is * lMatrix * matrix(pageIndex) * rMatrix, and the resulting MatrixArray * contains the array of the results per page. If "this" has dimensions diff --git a/src/core/model/simulator-impl.h b/src/core/model/simulator-impl.h index 9775e324d..2355d2582 100644 --- a/src/core/model/simulator-impl.h +++ b/src/core/model/simulator-impl.h @@ -54,7 +54,7 @@ class SimulatorImpl : public Object */ static TypeId GetTypeId(); - /** \copydoc Simulator::Destroy */ + /** \copydoc Simulator::Destroy */ virtual void Destroy() = 0; /** \copydoc Simulator::IsFinished */ virtual bool IsFinished() const = 0; diff --git a/src/core/model/vector.h b/src/core/model/vector.h index ff4483cdc..856e9a4a0 100644 --- a/src/core/model/vector.h +++ b/src/core/model/vector.h @@ -394,25 +394,25 @@ Ptr MakeVectorChecker(); // Document these by hand so they go in group attribute_Vector3D -/*! -\ingroup attribute_Vector3D -\fn ns3::Ptr ns3::MakeVectorAccessor (T1 a1) -\copydoc ns3::MakeAccessorHelper(T1) -\see AttributeAccessor -*/ +/** + * \ingroup attribute_Vector3D + * \fn ns3::Ptr ns3::MakeVectorAccessor (T1 a1) + * \copydoc ns3::MakeAccessorHelper(T1) + * \see AttributeAccessor + */ -/*! -\ingroup attribute_Vector3D -\fn ns3::Ptr ns3::MakeVectorAccessor (T1 a1, T2 a2) -\copydoc ns3::MakeAccessorHelper(T1,T2) -\see AttributeAccessor -*/ +/** + * \ingroup attribute_Vector3D + * \fn ns3::Ptr ns3::MakeVectorAccessor (T1 a1, T2 a2) + * \copydoc ns3::MakeAccessorHelper(T1,T2) + * \see AttributeAccessor + */ -/*! -\ingroup attribute_Vector3D -\fn ns3::Ptr ns3::MakeVectorChecker () -\returns The AttributeChecker. -\see AttributeChecker -*/ +/** + * \ingroup attribute_Vector3D + * \fn ns3::Ptr ns3::MakeVectorChecker () + * \returns The AttributeChecker. + * \see AttributeChecker + */ #endif /* NS3_VECTOR_H */ diff --git a/src/core/model/version-defines.h.in b/src/core/model/version-defines.h.in index 319d75e96..d94fa33f9 100644 --- a/src/core/model/version-defines.h.in +++ b/src/core/model/version-defines.h.in @@ -1,4 +1,3 @@ -/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2018 Lawrence Livermore National Laboratory * @@ -22,16 +21,16 @@ #define NS3_VERSION_DEFINES_H_ /** - * \file - * \ingroup buildversion - * Defines the macro values for printing the build version. - * These will be populated by the build system. - */ + * \file + * \ingroup buildversion + * Defines the macro values for printing the build version. + * These will be populated by the build system. + */ /** - * \ingroup buildversion - * @{ - */ + * \ingroup buildversion + * @{ + */ /** * The first tag found which matches the pattern ns-3*. diff --git a/src/internet/model/ipv4-route.h b/src/internet/model/ipv4-route.h index 9d77f13b8..e4dba64ec 100644 --- a/src/internet/model/ipv4-route.h +++ b/src/internet/model/ipv4-route.h @@ -33,7 +33,7 @@ class NetDevice; /** * \ingroup ipv4Routing * - *\brief IPv4 route cache entry (similar to Linux struct rtable) + * \brief IPv4 route cache entry (similar to Linux struct rtable) * * This is a reference counted object. In the future, we will add other * entries from struct dst_entry, struct rtable, and struct dst_ops as needed. diff --git a/src/internet/model/tcp-ledbat.h b/src/internet/model/tcp-ledbat.h index 614150eae..c5aeea6cb 100644 --- a/src/internet/model/tcp-ledbat.h +++ b/src/internet/model/tcp-ledbat.h @@ -126,7 +126,7 @@ class TcpLedbat : public TcpNewReno private: /** - *\brief Buffer structure to store delays + * \brief Buffer structure to store delays */ struct OwdCircBuf { diff --git a/src/internet/model/tcp-socket-base.h b/src/internet/model/tcp-socket-base.h index 8e1b4c3fd..e6da2d879 100644 --- a/src/internet/model/tcp-socket-base.h +++ b/src/internet/model/tcp-socket-base.h @@ -1145,7 +1145,8 @@ class TcpSocketBase : public TcpSocket */ void DoRetransmit(); - /** \brief Add options to TcpHeader + /** + * \brief Add options to TcpHeader * * Test each option, and if it is enabled on our side, add it * to the header @@ -1232,7 +1233,8 @@ class TcpSocketBase : public TcpSocket */ void AddOptionSack(TcpHeader& header); - /** \brief Process the timestamp option from other side + /** + * \brief Process the timestamp option from other side * * Get the timestamp and the echo, then save timestamp (which will * be the echo value in our out-packets) and save the echoed timestamp, diff --git a/src/internet/model/tcp-tx-buffer.h b/src/internet/model/tcp-tx-buffer.h index abae9e84e..a1b8a72e8 100644 --- a/src/internet/model/tcp-tx-buffer.h +++ b/src/internet/model/tcp-tx-buffer.h @@ -499,7 +499,7 @@ class TcpTxBuffer : public Object * The cases we need to manage are two, and they are depicted in the following * image: * - *\verbatim + * \verbatim |------| |----| |----| list = | | --> | | --> | | |------| |----| |----| @@ -525,7 +525,7 @@ class TcpTxBuffer : public Object * and we reduce case (2) to case (1) through sequentially applying fragment * or merge. For instance: * - *\verbatim + * \verbatim |------| | | |------| diff --git a/src/internet/test/tcp-advertised-window-test.cc b/src/internet/test/tcp-advertised-window-test.cc index af9a22bbb..8a5141e5b 100644 --- a/src/internet/test/tcp-advertised-window-test.cc +++ b/src/internet/test/tcp-advertised-window-test.cc @@ -303,7 +303,8 @@ class TcpAdvertisedWindowTest : public TcpGeneralTest Ptr CreateReceiverErrorModel() override; private: - /** \brief Callback called for the update of the awnd + /** + * \brief Callback called for the update of the awnd * \param oldAwnd Old advertised window * \param newAwnd new value */ @@ -389,7 +390,8 @@ class TcpAdvWindowOnLossTest : public TcpGeneralTest Ptr CreateReceiverErrorModel() override; private: - /** \brief Callback called for the update of the awnd + /** + * \brief Callback called for the update of the awnd * \param oldAwnd Old advertised window * \param newAwnd new value */ diff --git a/src/internet/test/tcp-general-test.h b/src/internet/test/tcp-general-test.h index 67615c7b2..626020975 100644 --- a/src/internet/test/tcp-general-test.h +++ b/src/internet/test/tcp-general-test.h @@ -759,7 +759,7 @@ class TcpGeneralTest : public TestCase } /** - * \brief Slow start threshold changes + * \brief Slow start threshold changes * * This applies only for sender socket. * diff --git a/src/internet/test/tcp-ledbat-test.cc b/src/internet/test/tcp-ledbat-test.cc index 3ea322fe7..4b54e4251 100644 --- a/src/internet/test/tcp-ledbat-test.cc +++ b/src/internet/test/tcp-ledbat-test.cc @@ -60,7 +60,8 @@ class TcpLedbatToNewReno : public TestCase private: void DoRun() override; - /** \brief Execute the test + /** + * \brief Execute the test */ void ExecuteTest(); @@ -160,7 +161,8 @@ class TcpLedbatIncrementTest : public TestCase private: void DoRun() override; - /** \brief Execute the test + /** + * \brief Execute the test */ void ExecuteTest(); @@ -261,7 +263,8 @@ class TcpLedbatDecrementTest : public TestCase private: void DoRun() override; - /** \brief Execute the test + /** + * \brief Execute the test */ void ExecuteTest(); diff --git a/src/internet/test/tcp-sack-permitted-test.cc b/src/internet/test/tcp-sack-permitted-test.cc index 61dda3e3c..c90cf6e33 100644 --- a/src/internet/test/tcp-sack-permitted-test.cc +++ b/src/internet/test/tcp-sack-permitted-test.cc @@ -198,7 +198,7 @@ SackPermittedTestCase::Tx(const Ptr p, const TcpHeader& h, SocketW /** * \ingroup internet-test - * \ingroup tests + * \ingroup tests * * The test case for testing the TCP SACK PERMITTED option. */ diff --git a/src/lr-wpan/model/lr-wpan-mac-base.h b/src/lr-wpan/model/lr-wpan-mac-base.h index ca5cc403b..b375b1353 100644 --- a/src/lr-wpan/model/lr-wpan-mac-base.h +++ b/src/lr-wpan/model/lr-wpan-mac-base.h @@ -880,7 +880,7 @@ class LrWpanMacBase : public Object * The callback implements MLME-GET.confirm SAP of IEEE 802.15.4-2011, * section 6.2.5.2 * - *\param c the callback + * \param c the callback */ void SetMlmeGetConfirmCallback(MlmeGetConfirmCallback c); diff --git a/src/lr-wpan/model/lr-wpan-mac.h b/src/lr-wpan/model/lr-wpan-mac.h index 4c2c0a95a..92e060a31 100644 --- a/src/lr-wpan/model/lr-wpan-mac.h +++ b/src/lr-wpan/model/lr-wpan-mac.h @@ -668,14 +668,14 @@ class LrWpanMac : public LrWpanMacBase /** * Check if the packet destination is its coordinator * - *\param mac The coordinator short MAC Address + * \param mac The coordinator short MAC Address */ void SetAssociatedCoor(Mac16Address mac); /** * Check if the packet destination is its coordinator * - *\param mac The coordinator extended MAC Address + * \param mac The coordinator extended MAC Address */ void SetAssociatedCoor(Mac64Address mac); @@ -689,15 +689,15 @@ class LrWpanMac : public LrWpanMacBase /** * Obtain the number of symbols in the packet which is currently being sent by the MAC layer. * - *\return packet number of symbols - * */ + * \return packet number of symbols + */ uint64_t GetTxPacketSymbols(); /** * Check if the packet to transmit requires acknowledgment * - *\return True if the Tx packet requires acknowledgment - * */ + * \return True if the Tx packet requires acknowledgment + */ bool IsTxAckReq(); /** diff --git a/src/lte/model/lte-enb-rrc.h b/src/lte/model/lte-enb-rrc.h index 83ce5fb9b..f73739a55 100644 --- a/src/lte/model/lte-enb-rrc.h +++ b/src/lte/model/lte-enb-rrc.h @@ -1045,7 +1045,7 @@ class LteEnbRrc : public Object void SendHandoverRequest(uint16_t rnti, uint16_t cellId); /** - * \brief This function acts as an interface to trigger Release indication messages towards eNB + * \brief This function acts as an interface to trigger Release indication messages towards eNB * and EPC * \param imsi the IMSI * \param rnti the RNTI diff --git a/src/mesh/model/dot11s/hwmp-protocol.h b/src/mesh/model/dot11s/hwmp-protocol.h index 4c317f94f..24fd66bf1 100644 --- a/src/mesh/model/dot11s/hwmp-protocol.h +++ b/src/mesh/model/dot11s/hwmp-protocol.h @@ -165,7 +165,7 @@ class HwmpProtocol : public MeshL2RoutingProtocol * \param os the output stream */ void Report(std::ostream& os) const; - ///\brief Reset Statistics: + /// \brief Reset Statistics: void ResetStats(); ///@} @@ -412,7 +412,7 @@ class HwmpProtocol : public MeshL2RoutingProtocol void SendProactivePreq(); ///@} - ///\return address of MeshPointDevice + /// \return address of MeshPointDevice Mac48Address GetAddress(); /// \name Methods needed by HwmpMacLugin to access protocol parameters: ///@{ diff --git a/src/mesh/model/dot11s/peer-link-frame.h b/src/mesh/model/dot11s/peer-link-frame.h index 7b3ca39ed..0f8fd7000 100644 --- a/src/mesh/model/dot11s/peer-link-frame.h +++ b/src/mesh/model/dot11s/peer-link-frame.h @@ -53,7 +53,7 @@ class PeerLinkOpenStart : public Header PeerLinkOpenStart(const PeerLinkOpenStart&) = delete; PeerLinkOpenStart& operator=(const PeerLinkOpenStart&) = delete; - ///\brief fields: + /// \brief fields: struct PlinkOpenStartFields { IePeeringProtocol protocol; ///< Peering protocol version - 3 octets @@ -123,7 +123,7 @@ class PeerLinkCloseStart : public Header PeerLinkCloseStart(const PeerLinkCloseStart&) = delete; PeerLinkCloseStart& operator=(const PeerLinkCloseStart&) = delete; - ///\brief fields: + /// \brief fields: struct PlinkCloseStartFields { IePeeringProtocol protocol; ///< Peering protocol version - 3 octets @@ -187,7 +187,7 @@ class PeerLinkConfirmStart : public Header PeerLinkConfirmStart(const PeerLinkConfirmStart&) = delete; PeerLinkConfirmStart& operator=(const PeerLinkConfirmStart&) = delete; - ///\brief fields: + /// \brief fields: struct PlinkConfirmStartFields { IePeeringProtocol protocol; ///< Peering protocol version - 3 octets diff --git a/src/mesh/model/dot11s/peer-management-protocol-mac.h b/src/mesh/model/dot11s/peer-management-protocol-mac.h index 6200e91c6..db93546da 100644 --- a/src/mesh/model/dot11s/peer-management-protocol-mac.h +++ b/src/mesh/model/dot11s/peer-management-protocol-mac.h @@ -129,7 +129,7 @@ class PeerManagementProtocolMac : public MeshWifiInterfaceMacPlugin /// allow PeerLink class access friend access friend class PeerLink; - ///\name Create peer link management frames + /// \name Create peer link management frames // \{ /** * \brief This structure keeps all fields in peer link management frame, @@ -234,7 +234,7 @@ class PeerManagementProtocolMac : public MeshWifiInterfaceMacPlugin private: Statistics m_stats; ///< statistics - ///\name Information about MAC and protocol: + /// \name Information about MAC and protocol: Ptr m_parent; ///< parent uint32_t m_ifIndex; ///< IF index Ptr m_protocol; ///< protocol diff --git a/src/mesh/model/dot11s/peer-management-protocol.h b/src/mesh/model/dot11s/peer-management-protocol.h index 1c5f44219..3db726837 100644 --- a/src/mesh/model/dot11s/peer-management-protocol.h +++ b/src/mesh/model/dot11s/peer-management-protocol.h @@ -263,9 +263,9 @@ class PeerManagementProtocol : public Object typedef std::map PeerLinksMap; /// This map keeps relationship between peer address and its beacon information typedef std::map BeaconsOnInterface; - ///\brief This map keeps beacon information on all interfaces + /// \brief This map keeps beacon information on all interfaces typedef std::map BeaconInfoMap; - ///\brief this vector keeps pointers to MAC-plugins + /// \brief this vector keeps pointers to MAC-plugins typedef std::map> PeerManagementProtocolMacMap; /** diff --git a/src/network/utils/ethernet-trailer.h b/src/network/utils/ethernet-trailer.h index 62ca0a93d..517d7a775 100644 --- a/src/network/utils/ethernet-trailer.h +++ b/src/network/utils/ethernet-trailer.h @@ -86,7 +86,7 @@ class EthernetTrailer : public Trailer bool CheckFcs(Ptr p) const; /** - *\return Returns the size of the trailer + * \return Returns the size of the trailer */ uint32_t GetTrailerSize() const; diff --git a/src/sixlowpan/model/sixlowpan-header.h b/src/sixlowpan/model/sixlowpan-header.h index 6e76016b4..f050c4bd8 100644 --- a/src/sixlowpan/model/sixlowpan-header.h +++ b/src/sixlowpan/model/sixlowpan-header.h @@ -46,8 +46,8 @@ class SixLowPanDispatch { public: /** - * \brief Dispatch values, as defined in \RFC{4944} and \RFC{6282} - \verbatim + * \brief Dispatch values, as defined in \RFC{4944} and \RFC{6282} + \verbatim Pattern Header Type +------------+------------------------------------------------+ | 00 xxxxxx | NALP - Not a LoWPAN frame | diff --git a/src/wifi/model/ht/ht-operation.h b/src/wifi/model/ht/ht-operation.h index 3d8213aef..b73a77f64 100644 --- a/src/wifi/model/ht/ht-operation.h +++ b/src/wifi/model/ht/ht-operation.h @@ -318,7 +318,7 @@ class HtOperation : public WifiInformationElement * Return MCS is supported. * * \param mcs MCS - *\ + * * \return the MCS is supported */ bool IsSupportedMcs(uint8_t mcs) const; diff --git a/src/wimax/model/service-flow-manager.h b/src/wimax/model/service-flow-manager.h index 3385d7a9c..2ad078284 100644 --- a/src/wimax/model/service-flow-manager.h +++ b/src/wimax/model/service-flow-manager.h @@ -111,13 +111,13 @@ class ServiceFlowManager : public Object uint32_t GetNrServiceFlows() const; /** - *\param SrcAddress the source ip address - *\param DstAddress the destination ip address - *\param SrcPort the source port - *\param DstPort the destination port - *\param Proto the protocol - *\param dir the direction of the service flow - *\return the service flow to which this ip flow is associated + * \param SrcAddress the source ip address + * \param DstAddress the destination ip address + * \param SrcPort the source port + * \param DstPort the destination port + * \param Proto the protocol + * \param dir the direction of the service flow + * \return the service flow to which this ip flow is associated */ ServiceFlow* DoClassify(Ipv4Address SrcAddress, Ipv4Address DstAddress,