blob: 5a87bac09f539abe1e2ededf0daf88a31d634208 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "protocolhandler.hpp"
ProtocolHandler::ProtocolHandler(QObject *parent) : QObject(parent)
{
}
bool ProtocolHandler::enableClientCertificate(const CryptoIdentity &ident)
{
Q_UNUSED(ident);
return true;
}
void ProtocolHandler::disableClientCertificate()
{
}
|