You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/12 07:21:05 UTC

[16/33] ibrowse commit: updated refs/heads/import-master to 1167b0e

more relaxed verification of SSL chains, COUCHDB-840

git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@980269 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/commit/1c4324e4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/tree/1c4324e4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/diff/1c4324e4

Branch: refs/heads/import-master
Commit: 1c4324e46d6ad9de8df77bc7215fd8da7fa280e4
Parents: c166256
Author: Adam Kocoloski <ko...@apache.org>
Authored: Thu Jul 29 00:02:08 2010 +0000
Committer: Adam Kocoloski <ko...@apache.org>
Committed: Thu Jul 29 00:02:08 2010 +0000

----------------------------------------------------------------------
 ibrowse_http_client.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse/blob/1c4324e4/ibrowse_http_client.erl
----------------------------------------------------------------------
diff --git a/ibrowse_http_client.erl b/ibrowse_http_client.erl
index a767b84..65d9cb9 100644
--- a/ibrowse_http_client.erl
+++ b/ibrowse_http_client.erl
@@ -119,7 +119,7 @@ init(#url{host=Host, port=Port, protocol=Protocol}) ->
         host = Host,
         port = Port,
         is_ssl = (Protocol == https),
-        ssl_options = [{ssl_imp, new}]
+        ssl_options = [{ssl_imp, new}, {depth, 9}]
     },
     put(ibrowse_trace_token, [Host, $:, integer_to_list(Port)]),
     put(my_trace_flag, ibrowse_lib:get_trace_status(Host, Port)),