summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--dillorc6
-rw-r--r--src/prefs.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bce658a..72a6bcb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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).
diff --git a/dillorc b/dillorc
index cd9a2f2a..eb856d37 100644
--- a/dillorc
+++ b/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;