http - TCP Termination -


what happening tcp connection after
end of http session?
example, after loading static webpage webserver

thanks

a http session refers server keeping association specific user , potentially of length (using, instance, cookies association tokens).

a http session therefore contains multiple tcp sessions. non persistent http connections, every request has own tcp session (and closed after). persistent http connections on other hand, multiple http resources fetched wihtin tcp session , either side close upon reached timeout threshold on either side.

wikipedia article on persistent http connections (keep-alive: true)


Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -