aboutsummaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-16 22:01:59 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-16 22:01:59 +0200
commita3f3e3933c4a2522e233917a6795c6e9d677e65c (patch)
tree6e1bd483bbd5e8ca6fee4566e544de48bfa754a6 /src/protocolhandler.cpp
parentbc18d9356828f1ae40d3b4ce5432b30ca13cfc15 (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.cpp17
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()
+{
+
+}