diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-16 22:01:59 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-16 22:01:59 +0200 |
| commit | a3f3e3933c4a2522e233917a6795c6e9d677e65c (patch) | |
| tree | 6e1bd483bbd5e8ca6fee4566e544de48bfa754a6 /src/protocolhandler.cpp | |
| parent | bc18d9356828f1ae40d3b4ce5432b30ca13cfc15 (diff) | |
Refactoring: Changes internal structure of requests and unifies a lot of code. Now all errors are handled the same.
Diffstat (limited to 'src/protocolhandler.cpp')
| -rw-r--r-- | src/protocolhandler.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp new file mode 100644 index 0000000..5a87bac --- /dev/null +++ b/src/protocolhandler.cpp @@ -0,0 +1,17 @@ +#include "protocolhandler.hpp" + +ProtocolHandler::ProtocolHandler(QObject *parent) : QObject(parent) +{ + +} + +bool ProtocolHandler::enableClientCertificate(const CryptoIdentity &ident) +{ + Q_UNUSED(ident); + return true; +} + +void ProtocolHandler::disableClientCertificate() +{ + +} |
