diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | dillorc | 6 | ||||
-rw-r--r-- | src/prefs.c | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -25,7 +25,7 @@ dillo-3.1 [not released yet] Patches: Sebastian Geerken +- HTML5 character references. - Give images lower priority when requesting resources (responsiveness). - - Reuse of connections for HTTP (enable w/ http_persistent_conns in dillorc). + - Reuse of connections for HTTP (disable w/ http_persistent_conns in dillorc). - Abort failed queries. - HTTP Strict Transport Security (disable with http_strict_transport_security preference in dillorc). @@ -184,10 +184,10 @@ search_url="Google http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" # Maximum number of simultaneous TCP connections to a single server or proxy. # http_max_conns=6 -# Change this if you want Dillo to reuse HTTP connections to a server or proxy -# when possible instead of making a new connection for every request for a new +# If enabled, Dillo will reuse HTTP connections to a server or proxy when +# possible rather than making a new connection for every request for a new # page/image/stylesheet. -#http_persistent_conns=NO +#http_persistent_conns=YES # This mechanism allows servers to specify that they are only to be contacted # through HTTPS and not HTTP. diff --git a/src/prefs.c b/src/prefs.c index 4ee65ba3..39416a04 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -63,7 +63,7 @@ void a_Prefs_init(void) prefs.http_language = NULL; prefs.http_proxy = NULL; prefs.http_max_conns = 6; - prefs.http_persistent_conns = FALSE; + prefs.http_persistent_conns = TRUE; prefs.http_proxyuser = NULL; prefs.http_referer = dStrdup(PREFS_HTTP_REFERER); prefs.http_strict_transport_security = TRUE; |