From a3f3e3933c4a2522e233917a6795c6e9d677e65c Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Tue, 16 Jun 2020 22:01:59 +0200 Subject: Refactoring: Changes internal structure of requests and unifies a lot of code. Now all errors are handled the same. --- src/protocolhandler.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/protocolhandler.cpp (limited to 'src/protocolhandler.cpp') 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() +{ + +} -- cgit v1.2.3