diff options
author | Matthias Gierlings <[email protected]> | 2016-06-19 20:23:19 +0200 |
---|---|---|
committer | Matthias Gierlings <[email protected]> | 2016-06-19 20:23:19 +0200 |
commit | 0d38a540cca29955a50acda165e6d8643793e846 (patch) | |
tree | 4520da4db326afac26dbd1ff17f0d57f54c9a0e6 /src/cli/tls_client.cpp | |
parent | 129324f68f59bea91b3b8901875eeb278acb34b1 (diff) |
Removed TLS::Session::Properties
- Removed proposed wrapper class to logically group TLS session
properties.
Diffstat (limited to 'src/cli/tls_client.cpp')
-rw-r--r-- | src/cli/tls_client.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cli/tls_client.cpp b/src/cli/tls_client.cpp index 2e7daed6e..e2fc1f027 100644 --- a/src/cli/tls_client.cpp +++ b/src/cli/tls_client.cpp @@ -128,10 +128,9 @@ class TLS_Client final : public Command creds, *policy, rng(), - Botan::TLS::Client::Properties( - Botan::TLS::Server_Information(host, port), - version, - protocols_to_offer)); + Botan::TLS::Server_Information(host, port), + version, + protocols_to_offer); bool first_active = true; |