aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/tls_client.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2022-02-10 17:35:44 -0500
committerJack Lloyd <[email protected]>2022-02-10 17:57:10 -0500
commit86d16c54044dc3df13e6479a437148388f1520fc (patch)
tree272d8c4db5584f952801a02aeada5460815ead20 /src/cli/tls_client.cpp
parente068d80953469fc8a3ec1715d0f64756d972daba (diff)
More clang-tidy fixes
Diffstat (limited to 'src/cli/tls_client.cpp')
-rw-r--r--src/cli/tls_client.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cli/tls_client.cpp b/src/cli/tls_client.cpp
index ef355fb74..74c9837ef 100644
--- a/src/cli/tls_client.cpp
+++ b/src/cli/tls_client.cpp
@@ -40,11 +40,16 @@ class TLS_Client final : public Command, public Botan::TLS::Callbacks
init_sockets();
}
- ~TLS_Client()
+ ~TLS_Client() override
{
stop_sockets();
}
+ TLS_Client(const TLS_Client& other) = delete;
+ TLS_Client(TLS_Client&& other) = delete;
+ TLS_Client& operator=(const TLS_Client& other) = delete;
+ TLS_Client& operator=(TLS_Client&& other) = delete;
+
std::string group() const override
{
return "tls";