willholley commented on code in PR #5983:
URL: https://github.com/apache/couchdb/pull/5983#discussion_r3160447354


##########
src/couch_replicator/src/couch_replicator_httpc.erl:
##########
@@ -535,6 +564,15 @@ merge_headers(Headers1, Headers2) when is_list(Headers1), 
is_list(Headers2) ->
     Merged = mochiweb_headers:enter_from_list(Headers1 ++ Headers2, Empty),
     mochiweb_headers:to_list(Merged).
 
+%% Add SNI to SSL options
+add_sni_option(IbrowseOpts, Host) ->
+    SslOpts = proplists:get_value(ssl_options, IbrowseOpts, []),
+    SslOpts1 = [
+        {server_name_indication, Host}

Review Comment:
   SNI is not supported for IP addresses - we can validate that



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to