Replace Doxygen tags using \ with @
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -20,7 +20,7 @@ class MyObject : public Object
|
||||
public:
|
||||
/**
|
||||
* Register this type.
|
||||
* \return The TypeId.
|
||||
* @return The TypeId.
|
||||
*/
|
||||
static TypeId GetTypeId()
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user