X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=053ab29b83c8b5779c6841c576ed0820c26b34a6;hb=refs%2Fpull%2F92%2Fhead;hp=d7c1b1d590ec8cd9a29a4c2767ac88bec5865d78;hpb=d1bf207d30fe62a15d0e8669d186374c68e6eae8;p=quassel.git diff --git a/src/common/protocol.h b/src/common/protocol.h index d7c1b1d5..053ab29b 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -30,7 +30,8 @@ namespace Protocol { const quint32 magic = 0x42b33f00; enum Type { - LegacyProtocol = 1 + LegacyProtocol = 0x01, + DataStreamProtocol = 0x02 }; @@ -55,11 +56,13 @@ struct HandshakeMessage { struct RegisterClient : public HandshakeMessage { - inline RegisterClient(const QString &clientVersion, bool sslSupported = false) + inline RegisterClient(const QString &clientVersion, const QString &buildDate, bool sslSupported = false) : clientVersion(clientVersion) + , buildDate(buildDate) , sslSupported(sslSupported) {} QString clientVersion; + QString buildDate; // this is only used by the LegacyProtocol in compat mode bool sslSupported;