diff options
author | Ingela Anderton Andin <[email protected]> | 2015-05-18 14:51:52 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-05-19 12:07:50 +0200 |
commit | d55d1e0239a880eac85946e99f6137925eb0147a (patch) | |
tree | d7c0d082ee8789ea98b8de1c5016ee659230bce1 /lib/ssl/test/ssl_to_openssl_SUITE.erl | |
parent | 9ad75229be650040776565f64b623fd9cf69d081 (diff) | |
download | otp-d55d1e0239a880eac85946e99f6137925eb0147a.tar.gz otp-d55d1e0239a880eac85946e99f6137925eb0147a.tar.bz2 otp-d55d1e0239a880eac85946e99f6137925eb0147a.zip |
ssl: Use new API function connection_information in tests
connection_info -> connection_information
Diffstat (limited to 'lib/ssl/test/ssl_to_openssl_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index 0413415e49..8e325e814e 100644 --- a/lib/ssl/test/ssl_to_openssl_SUITE.erl +++ b/lib/ssl/test/ssl_to_openssl_SUITE.erl @@ -1664,7 +1664,7 @@ erlang_ssl_receive_and_assert_negotiated_protocol(Socket, Protocol, Data) -> erlang_ssl_receive(Socket, Data) -> ct:log("Connection info: ~p~n", - [ssl:connection_info(Socket)]), + [ssl:connection_information(Socket)]), receive {ssl, Socket, Data} -> io:format("Received ~p~n",[Data]), @@ -1683,16 +1683,16 @@ erlang_ssl_receive(Socket, Data) -> end. connection_info(Socket, Version) -> - case ssl:connection_info(Socket) of - {ok, {Version, _} = Info} -> + case ssl:connection_information(Socket, [version]) of + {ok, [{version, Version}] = Info} -> ct:log("Connection info: ~p~n", [Info]), ok; - {ok, {OtherVersion, _}} -> + {ok, [{version, OtherVersion}]} -> {wrong_version, OtherVersion} end. connection_info_result(Socket) -> - ssl:connection_info(Socket). + ssl:connection_information(Socket). delayed_send(Socket, [ErlData, OpenSslData]) -> |