diff options
author | Jack Lloyd <[email protected]> | 2022-02-10 17:35:44 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2022-02-10 17:57:10 -0500 |
commit | 86d16c54044dc3df13e6479a437148388f1520fc (patch) | |
tree | 272d8c4db5584f952801a02aeada5460815ead20 /src/cli/tls_client.cpp | |
parent | e068d80953469fc8a3ec1715d0f64756d972daba (diff) |
More clang-tidy fixes
Diffstat (limited to 'src/cli/tls_client.cpp')
-rw-r--r-- | src/cli/tls_client.cpp | 7 |
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"; |