aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/tls_client.cpp
diff options
context:
space:
mode:
authorMatthias Gierlings <[email protected]>2016-06-19 20:23:19 +0200
committerMatthias Gierlings <[email protected]>2016-06-19 20:23:19 +0200
commit0d38a540cca29955a50acda165e6d8643793e846 (patch)
tree4520da4db326afac26dbd1ff17f0d57f54c9a0e6 /src/cli/tls_client.cpp
parent129324f68f59bea91b3b8901875eeb278acb34b1 (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.cpp7
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;