From 67ed79a12211eb0bec60b576be333a3e9f12694a Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Wed, 12 May 2010 21:58:30 -0700 Subject: [PATCH] Fix minor doxygen error --- src/routing/static-routing/ipv4-routing-table-entry.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/routing/static-routing/ipv4-routing-table-entry.h b/src/routing/static-routing/ipv4-routing-table-entry.h index 74a8894d1..81999adb2 100644 --- a/src/routing/static-routing/ipv4-routing-table-entry.h +++ b/src/routing/static-routing/ipv4-routing-table-entry.h @@ -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; /**