X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=4bff50ae983b7be1b513d9de252da96869b5d95a;hb=e30092afc1803d753914a7ab9fa88bba818de559;hp=ba7053031a536e4ef883c5985f5c833ff896d4c1;hpb=a8dd070641e70ff96fc2077df63cc5fabe3f7785;p=quassel.git diff --git a/src/common/protocol.h b/src/common/protocol.h index ba705303..4bff50ae 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -81,12 +81,11 @@ struct ClientDenied : public HandshakeMessage struct ClientRegistered : public HandshakeMessage { - inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported, const QString &coreInfo) + inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported) : coreFeatures(coreFeatures) , coreConfigured(coreConfigured) , backendInfo(backendInfo) , sslSupported(sslSupported) - , coreInfo(coreInfo) {} quint32 coreFeatures; @@ -95,7 +94,6 @@ struct ClientRegistered : public HandshakeMessage // this is only used by the LegacyProtocol in compat mode bool sslSupported; - QString coreInfo; };