1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-11 16:06:33 +00:00

Fix an identifier in a TODO comment.

This commit is contained in:
david
2009-04-08 20:04:54 +00:00
parent 24fbedd748
commit e69ae791cb

View File

@@ -1663,7 +1663,7 @@ ServiceGroup::ServiceGroup(vector<Target *> &Targets, AllProbes *AP) {
if (o.timing_level == 3) desired_par = 10;
if (o.timing_level == 4) desired_par = 15;
if (o.timing_level >= 5) desired_par = 20;
// TODO: Come up with better ways to determine ideal_services
// TODO: Come up with better ways to determine ideal_parallelism
ideal_parallelism = box(o.min_parallelism, o.max_parallelism? o.max_parallelism : 100, desired_par);
}