The main significant change is new adaptive algorithm for waiting. Traditional traceroute implementation always waited the whole timeout (default 5.0 second) for any probe. But if we already have some replies from the same hop, or even from some next hop, we can use the round trip time of such a reply as a hint to determine the actual reasonable amount of time to wait.
Signed-off-by: Alexander Marx alexander.marx@ipfire.org --- traceroute/traceroute.nm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/traceroute/traceroute.nm b/traceroute/traceroute.nm index 5d3a7f8..44c4ecc 100644 --- a/traceroute/traceroute.nm +++ b/traceroute/traceroute.nm @@ -4,7 +4,7 @@ ###############################################################################
name = traceroute -version = 2.0.12 +version = 2.1.0 release = 1
groups = Application/Internet