Replace Doxygen tags using \ with @

This commit is contained in:
Eduardo Almeida
2024-11-08 18:05:46 +00:00
parent e99d17039b
commit 6ef966c4cf
1800 changed files with 49640 additions and 49640 deletions

View File

@@ -54,8 +54,8 @@ NS_LOG_COMPONENT_DEFINE("FifthScriptExample");
/**
* Congestion window change callback
*
* \param oldCwnd Old congestion window.
* \param newCwnd New congestion window.
* @param oldCwnd Old congestion window.
* @param newCwnd New congestion window.
*/
static void
CwndChange(uint32_t oldCwnd, uint32_t newCwnd)
@@ -66,7 +66,7 @@ CwndChange(uint32_t oldCwnd, uint32_t newCwnd)
/**
* Rx drop callback
*
* \param p The dropped packet.
* @param p The dropped packet.
*/
static void
RxDrop(Ptr<const Packet> p)

View File

@@ -20,7 +20,7 @@ class MyObject : public Object
public:
/**
* Register this type.
* \return The TypeId.
* @return The TypeId.
*/
static TypeId GetTypeId()
{

View File

@@ -58,9 +58,9 @@ NS_LOG_COMPONENT_DEFINE("SeventhScriptExample");
/**
* Congestion window change callback
*
* \param stream The output stream file.
* \param oldCwnd Old congestion window.
* \param newCwnd New congestion window.
* @param stream The output stream file.
* @param oldCwnd Old congestion window.
* @param newCwnd New congestion window.
*/
static void
CwndChange(Ptr<OutputStreamWrapper> stream, uint32_t oldCwnd, uint32_t newCwnd)
@@ -73,8 +73,8 @@ CwndChange(Ptr<OutputStreamWrapper> stream, uint32_t oldCwnd, uint32_t newCwnd)
/**
* Rx drop callback
*
* \param file The output PCAP file.
* \param p The dropped packet.
* @param file The output PCAP file.
* @param p The dropped packet.
*/
static void
RxDrop(Ptr<PcapFileWrapper> file, Ptr<const Packet> p)

View File

@@ -54,9 +54,9 @@ NS_LOG_COMPONENT_DEFINE("SixthScriptExample");
/**
* Congestion window change callback
*
* \param stream The output stream file.
* \param oldCwnd Old congestion window.
* \param newCwnd New congestion window.
* @param stream The output stream file.
* @param oldCwnd Old congestion window.
* @param newCwnd New congestion window.
*/
static void
CwndChange(Ptr<OutputStreamWrapper> stream, uint32_t oldCwnd, uint32_t newCwnd)
@@ -69,8 +69,8 @@ CwndChange(Ptr<OutputStreamWrapper> stream, uint32_t oldCwnd, uint32_t newCwnd)
/**
* Rx drop callback
*
* \param file The output PCAP file.
* \param p The dropped packet.
* @param file The output PCAP file.
* @param p The dropped packet.
*/
static void
RxDrop(Ptr<PcapFileWrapper> file, Ptr<const Packet> p)

View File

@@ -25,17 +25,17 @@ class TutorialApp : public Application
/**
* Register this type.
* \return The TypeId.
* @return The TypeId.
*/
static TypeId GetTypeId();
/**
* Setup the socket.
* \param socket The socket.
* \param address The destination address.
* \param packetSize The packet size to transmit.
* \param nPackets The number of packets to transmit.
* \param dataRate the data rate to use.
* @param socket The socket.
* @param address The destination address.
* @param packetSize The packet size to transmit.
* @param nPackets The number of packets to transmit.
* @param dataRate the data rate to use.
*/
void Setup(Ptr<Socket> socket,
Address address,