hnaEntries Create() moved into if block for clarity

This commit is contained in:
Lalith Suresh
2010-06-13 13:40:12 +05:30
parent 9425e97869
commit 91d49b20c4

View File

@@ -14,6 +14,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Lalith Suresh <suresh.lalith@gmail.com>
*
*/
//
@@ -228,12 +230,12 @@ int main (int argc, char *argv[])
}
}
// Create a special Ipv4StaticRouting instance for RoutingTableAssociation
// Even the Ipv4StaticRouting instance added to list may be used
Ptr<Ipv4StaticRouting> hnaEntries = Create<Ipv4StaticRouting> ();
if (assocMethod1)
{
// Create a special Ipv4StaticRouting instance for RoutingTableAssociation
// Even the Ipv4StaticRouting instance added to list may be used
Ptr<Ipv4StaticRouting> hnaEntries = Create<Ipv4StaticRouting> ();
// Add the required routes into the Ipv4StaticRouting Protocol instance
// and have the node generate HNA messages for all these routes
// which are associated with non-OLSR interfaces specified above.