Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/70b6ca4376cb822487b61692187283c528fb426c
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/70b6ca4376cb822487b61692187283c528fb426c
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/70b6ca4376cb822487b61692187283c528fb426c

The branch, master has been updated
       via  70b6ca4376cb822487b61692187283c528fb426c (commit)
      from  5efc6407d35fb47885ae6234a6e76bb3badd1b31 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=70b6ca4376cb822487b61692187283c528fb426c
commit 70b6ca4376cb822487b61692187283c528fb426c
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Force SSL session caching on, Ubuntu seems to have it off by default

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index 4033579..d652b83 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -646,6 +646,9 @@ static CURLcode fetch_curl_set_options(struct 
curl_fetch_info *f)
                SETOPT(CURLOPT_PROXY, NULL);
        }
 
+       /* Force-enable SSL session ID caching, as some distros are odd. */
+       SETOPT(CURLOPT_SSL_SESSIONID_CACHE, 1);
+
        if (urldb_get_cert_permissions(f->url)) {
                /* Disable certificate verification */
                SETOPT(CURLOPT_SSL_VERIFYPEER, 0L);


-----------------------------------------------------------------------

Summary of changes:
 content/fetchers/curl.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index 4033579..d652b83 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -646,6 +646,9 @@ static CURLcode fetch_curl_set_options(struct 
curl_fetch_info *f)
                SETOPT(CURLOPT_PROXY, NULL);
        }
 
+       /* Force-enable SSL session ID caching, as some distros are odd. */
+       SETOPT(CURLOPT_SSL_SESSIONID_CACHE, 1);
+
        if (urldb_get_cert_permissions(f->url)) {
                /* Disable certificate verification */
                SETOPT(CURLOPT_SSL_VERIFYPEER, 0L);


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to