X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=053ab29b83c8b5779c6841c576ed0820c26b34a6;hp=9b1a45a488561d2aa76c0b5830dac015715b9aa7;hb=9e21879f361dfe9978fb5159664cae352301064b;hpb=db9bba48e1674f169d1ed3cf184e5fa56dbe3a80;ds=sidebyside diff --git a/src/common/protocol.h b/src/common/protocol.h index 9b1a45a4..053ab29b 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -56,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;