Fix minor doxygen error

This commit is contained in:
Tom Henderson
2010-05-12 21:58:30 -07:00
parent 0f3de3777b
commit 67ed79a122

View File

@@ -51,11 +51,13 @@ public:
*/
Ipv4RoutingTableEntry (Ipv4RoutingTableEntry const *route);
/**
* \return True if this route is a host route; false otherwise
* \return True if this route is a host route (mask of all ones); false otherwise
*/
bool IsHost (void) const;
/**
* \return The IPv4 address of the destination of this route
* \return True if this route is not a host route (mask is not all ones); false otherwise
*
* This method is implemented as !IsHost ().
*/
bool IsNetwork (void) const;
/**