While creating a packet performance monitor I come across the follow problem: if I ping a server, I get about 4ms. If I calculate the time between a POST and its first ACK, I get about 25us (microseconds).
Here is Wireshark data for both situations:
*REF* 172.26.45.212 10.160.86.12 ICMP 74 Echo (ping) request 0.003988000 10.160.86.12 172.26.45.121 ICMP 74 Echo (ping) reply *REF* 172.26.45.212 10.160.86.12 HTTP 606 POST /form/etc... 0.000025000 10.160.86.12 172.26.45.121 TCP 60 80>6704 [ACK] Seq...
Does anyone know why the difference? Both methods should give the round-trip time for my network.
Thanks in advance.