The response time in the results is sometime over 120000ms, which is not correct. I think it has to do with the folowing lines:
|
secd = (tv.tv_sec % 64) - (((resp >> 8) & 0xffff) / 1000); |
|
if(secd < 0) secd = 64 - secd; |
This operation will add 64 sec to response time instead of subtracting secd from 64 (secd is negative number).
Am I right?
This happens only if the queried host responded in over 1 second.
Thanks
The response time in the results is sometime over 120000ms, which is not correct. I think it has to do with the folowing lines:
braa/queries.c
Lines 541 to 542 in 7bae701
This operation will add 64 sec to response time instead of subtracting secd from 64 (secd is negative number).
Am I right?
This happens only if the queried host responded in over 1 second.
Thanks