X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=b219e018942d4c923ae24729d7b92a75626f33fb;hb=bc715c756677bee7cdb7109cc656e3e5f526c988;hp=053ab29b83c8b5779c6841c576ed0820c26b34a6;hpb=86597db6d33c40427dbc2bb4d1b781637e0c961c;p=quassel.git diff --git a/src/common/protocol.h b/src/common/protocol.h index 053ab29b..b219e018 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -80,12 +80,12 @@ struct ClientDenied : public HandshakeMessage struct ClientRegistered : public HandshakeMessage { - inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported, const QDateTime &coreStartTime) + inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported, const QString &coreInfo) : coreFeatures(coreFeatures) , coreConfigured(coreConfigured) , backendInfo(backendInfo) , sslSupported(sslSupported) - , coreStartTime(coreStartTime) + , coreInfo(coreInfo) {} quint32 coreFeatures; @@ -94,7 +94,7 @@ struct ClientRegistered : public HandshakeMessage // this is only used by the LegacyProtocol in compat mode bool sslSupported; - QDateTime coreStartTime; + QString coreInfo; };