GNOME Bugzilla – Bug 648680
Always send "Keep-Alive" header
Last modified: 2011-04-26 17:19:39 UTC
Our current approach of waiting for the server to tell us that is using HTTP1.0 does not improve performance as much as we would like because webpages use several different hosts to provide content, domain.com is served by a.domain.com, b.domain.com .... By always adding the keep-alive header we will just be adding a bit more traffic but we'll get a lot reusable connections in return.
Created attachment 186671 [details] [review] Patch
Comment on attachment 186671 [details] [review] Patch >+ const gchar* conn_header; oops, missed this before. "const char *conn_header;" (Not gchar, and put the * with the variable.) good to commit with that change
Committed 8e99df80d27115a6afce4203ddcc9ce31c4a7ce6 Note to myself: do not let webkit naming conventions take over your brain