X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=4bff50ae983b7be1b513d9de252da96869b5d95a;hp=ba7053031a536e4ef883c5985f5c833ff896d4c1;hb=4598f7042cd7c58c06e49c1841938ab82c70b503;hpb=9d31f5cca504cf0fbf896f75f5d10e3b39648b62 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; };