nix-vector-routing: post-commit examples fix of 8c4b901ce891

This commit is contained in:
Tom Henderson
2016-02-06 12:01:47 -08:00
parent 3d672f79c7
commit bc4efbf205
3 changed files with 3 additions and 3 deletions

View File

@@ -149,7 +149,7 @@ main (int argc, char *argv[])
if (nix)
{
Ipv4NixVectorHelper nixRouting;
stack.SetRoutingHelper (list); // has effect on the next Install ()
stack.SetRoutingHelper (nixRouting); // has effect on the next Install ()
}
// Create Campus Networks

View File

@@ -186,7 +186,7 @@ main (int argc, char *argv[])
if (nix)
{
Ipv4NixVectorHelper nixRouting;
stack.SetRoutingHelper (list); // has effect on the next Install ()
stack.SetRoutingHelper (nixRouting); // has effect on the next Install ()
}
stack.InstallAll ();

View File

@@ -162,7 +162,7 @@ main (int argc, char *argv[])
if (nix)
{
Ipv4NixVectorHelper nixRouting;
stack.SetRoutingHelper (list); // has effect on the next Install ()
stack.SetRoutingHelper (nixRouting); // has effect on the next Install ()
}
stack.InstallAll ();