I would like to know which HTTP GET relates to which response. Is there somewhere in the TCP packet that references the GET and is included in the response? For example, if there are five GET requests and only one response, is there a way to determine what GET it corresponds to? asked 14 Feb '12, 10:21 Ezat edited 14 Feb '12, 10:47 multipleinte... |
3 Answers:
Without HTTP pipelining, there will be only one request at a time in each TCP session, so when you look in one TCP session (same IP addresses/TCP ports combination), each response will be for the request before it. When HTTP pipelining is used (not used much), there can be multiple requests following each other in one TCP session. The responses then correspond chronologically to the requests. answered 14 Feb '12, 10:42 SYN-bit ♦♦ |
To find the time taken to load a webpage, you can take the difference of first request packet and last response for that
time to load the webpage = answered 14 Feb '12, 11:58 Rhiya edited 14 Feb '12, 12:00 multipleinte... is this a filter, looks like methods in programmming, sorry I don't script @ the moment, where do I plugg these lines in filters. (14 Feb '12, 12:25) Ezat |
Highlight the GET request and select analyze; Follow TCP Stream. That should help answered 15 Feb '12, 11:20 dixglata |
Very much appreciated Sake, so if I understood the order is sequential and I don't have to worry about which Response belong to which GET just following the stream downhill, do you think there is a way to see the speed of webpage loading other than using Firebug just by adding all the packets time.