Merge pull request #1974 from UrBnW/udping

Fix UDP ping
This commit is contained in:
qgarnier 2020-04-30 14:58:31 +02:00 committed by GitHub
commit dd9f2f3a1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ sub manage_selection {
}
$self->{global} = {
rta => $total_time_elapsed * 1000 / $self->{option_packets},
rta => $total_time_elapsed * 1000 / ($self->{option_packets} - $total_packet_lost),
rtmax => $max_time_elapsed * 1000,
rtmin => $min_time_elapsed * 1000,
pl => int($total_packet_lost * 100 / $self->{option_packets}),