Adapt TTL threshold to not exclude non-isl paths

This commit is contained in:
Tim Schubert 2020-08-31 18:17:12 +02:00
parent f8d552d12b
commit db1510063a
2 changed files with 4 additions and 4 deletions

View file

@ -101,8 +101,8 @@ int main (int argc, char *argv[])
//aodv.Set ("RreqRetries", UintegerValue (1000));
//aodv.Set ("RerrRateLimit", UintegerValue (1000));
//aodv.Set ("RreqRateLimit", UintegerValue (10));
//aodv.Set ("TtlThreshold", UintegerValue (10));
//aodv.Set ("NetDiameter", UintegerValue (50));
aodv.Set ("TtlThreshold", UintegerValue (20));
aodv.Set ("NetDiameter", UintegerValue (50));
stack.SetRoutingHelper (aodv);
}

View file

@ -153,8 +153,8 @@ int main (int argc, char *argv[])
//aodv.Set ("RreqRetries", UintegerValue (1000));
//aodv.Set ("RerrRateLimit", UintegerValue (1000));
//aodv.Set ("RreqRateLimit", UintegerValue (10));
//aodv.Set ("TtlThreshold", UintegerValue (10));
//aodv.Set ("NetDiameter", UintegerValue (50));
aodv.Set ("TtlThreshold", UintegerValue (20));
aodv.Set ("NetDiameter", UintegerValue (50));
stack.SetRoutingHelper (aodv);
}