Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions src/rabbit_ssl_options.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,22 @@

-export([fix/1]).

%% POODLE
-define(BAD_SSL_PROTOCOL_VERSIONS, [sslv3]).

-define(BAD_SSL_PROTOCOL_VERSIONS, [
%% POODLE
sslv3,

%% Client side of TLS 1.3 is not yet
%% implemented in Erlang/OTP 22.0
%% prereleases. As a consequence,
%% not sure about the stability of
%% the server side.
%%
%% FIXME: Revisit this decision when
%% Erlang/OTP 22.0 final release is
%% out.
'tlsv1.3'
]).

-spec fix(rabbit_types:infos()) -> rabbit_types:infos().

Expand Down