|
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? |
|
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. 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.
(14 Feb '12, 11:24)
Ezat
|
|
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 = 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
|
