Skip to content

Commit

Permalink
Delete move and copy constructors of SslCtxManager
Browse files Browse the repository at this point in the history
  • Loading branch information
halfgaar committed Nov 4, 2023
1 parent 66eca50 commit abbdc0c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sslctxmanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class SslCtxManager
SSL_CTX *ssl_ctx = nullptr;
public:
SslCtxManager();
SslCtxManager(const SslCtxManager &other) = delete;
SslCtxManager(SslCtxManager &&other) = delete;
SslCtxManager(const SSL_METHOD *method);
~SslCtxManager();

Expand Down

0 comments on commit abbdc0c

Please sign in to comment.