Reputation: 11
I want to obtain the latency between syn and syn+ack for a connection.
Example:
http get and http resp latency
client sniffer server
syn ------------------->
<---------------------syn+ack
syn+ack time - syn time = server latency
ack-------------------->
ack time - syn+ack = client latency
http get------------->
---------------------->http resp
http resp time - http get time = http server latency
How can I do this with gopacket tcp stream Reassembly ?
Upvotes: 1
Views: 71