X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2Fprotocol.h;h=b219e018942d4c923ae24729d7b92a75626f33fb;hb=8440be1fc6350dec8aa582d1493a8d2911c070a3;hp=053ab29b83c8b5779c6841c576ed0820c26b34a6;hpb=e095b7d97b0e794083801878d7c15b3a43dc38b0;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; };