Replace Doxygen tags using \ with @
This commit is contained in:
@@ -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);
|
||||
/**
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user