X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=4bff50ae983b7be1b513d9de252da96869b5d95a;hb=e30092afc1803d753914a7ab9fa88bba818de559;hp=b219e018942d4c923ae24729d7b92a75626f33fb;hpb=5a259061411e123d89059d815d1ea0f7cfcb3401;p=quassel.git diff --git a/src/common/protocol.h b/src/common/protocol.h index b219e018..4bff50ae 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -30,6 +30,7 @@ namespace Protocol { const quint32 magic = 0x42b33f00; enum Type { + InternalProtocol = 0x00, LegacyProtocol = 0x01, DataStreamProtocol = 0x02 }; @@ -80,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; @@ -94,7 +94,6 @@ struct ClientRegistered : public HandshakeMessage // this is only used by the LegacyProtocol in compat mode bool sslSupported; - QString coreInfo; };