How could I find or calculate the throughput, delay, and packet loss rate of TCP flow ?
- I want to do it from reading the pcap file , and using Python
- Now I use the dpkt module to caculate the throughput of TCP flow, accumulate the total length of all packets of one TCP flow, and divide total length by (endtimestamp - starttimestamp), is it correct? And how to find delay and pcaket loss rate?
- The data was captured in LTE network.
Thanks a lot.