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

@@ -89,22 +89,22 @@ class RoutingExperiment
/**
* Handles the command-line parameters.
* \param argc The argument count.
* \param argv The argument vector.
* @param argc The argument count.
* @param argv The argument vector.
*/
void CommandSetup(int argc, char** argv);
private:
/**
* Setup the receiving socket in a Sink Node.
* \param addr The address of the node.
* \param node The node pointer.
* \return the socket.
* @param addr The address of the node.
* @param node The node pointer.
* @return the socket.
*/
Ptr<Socket> SetupPacketReceive(Ipv4Address addr, Ptr<Node> node);
/**
* Receive a packet.
* \param socket The receiving socket.
* @param socket The receiving socket.
*/
void ReceivePacket(Ptr<Socket> socket);
/**

View File

@@ -30,17 +30,17 @@ using namespace ns3;
NS_LOG_COMPONENT_DEFINE("SimpleRoutingPing6Example");
/**
* \class StackHelper
* \brief Helper to set or get some IPv6 information about nodes.
* @class StackHelper
* @brief Helper to set or get some IPv6 information about nodes.
*/
class StackHelper
{
public:
/**
* \brief Add an address to a IPv6 node.
* \param n node
* \param interface interface index
* \param address IPv6 address to add
* @brief Add an address to a IPv6 node.
* @param n node
* @param interface interface index
* @param address IPv6 address to add
*/
inline void AddAddress(Ptr<Node>& n, uint32_t interface, Ipv6Address address)
{
@@ -49,8 +49,8 @@ class StackHelper
}
/**
* \brief Print the routing table.
* \param n the node
* @brief Print the routing table.
* @param n the node
*/
inline void PrintRoutingTable(Ptr<Node>& n)
{