X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fprotocol.h;h=ba7053031a536e4ef883c5985f5c833ff896d4c1;hp=89ef40731840fb2535fdabf09a9dd8b026eff7ef;hb=e56629542168c203cac8504085fc96c7f7b73d90;hpb=02bebb4c8f1c45397c55f1660176bfa0c303e703 diff --git a/src/common/protocol.h b/src/common/protocol.h index 89ef4073..ba705303 100644 --- a/src/common/protocol.h +++ b/src/common/protocol.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -27,17 +27,28 @@ namespace Protocol { +const quint32 magic = 0x42b33f00; + enum Type { - LegacyProtocol = 1 + InternalProtocol = 0x00, + LegacyProtocol = 0x01, + DataStreamProtocol = 0x02 +}; + + +enum Feature { + Encryption = 0x01, + Compression = 0x02 }; + enum Handler { SignalProxy, AuthHandler }; -/*** Handshake, handled by AuthHandler ***/ +/*** Handshake, handled by AuthHandler ***/ struct HandshakeMessage { inline Handler handler() const { return AuthHandler; } @@ -46,11 +57,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; @@ -68,12 +81,12 @@ struct ClientDenied : public HandshakeMessage struct ClientRegistered : public HandshakeMessage { - inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported, const QDateTime &coreStartTime) + inline ClientRegistered(quint32 coreFeatures, bool coreConfigured, const QVariantList &backendInfo, bool sslSupported, const QString &coreInfo) : coreFeatures(coreFeatures) , coreConfigured(coreConfigured) , backendInfo(backendInfo) , sslSupported(sslSupported) - , coreStartTime(coreStartTime) + , coreInfo(coreInfo) {} quint32 coreFeatures; @@ -82,7 +95,7 @@ struct ClientRegistered : public HandshakeMessage // this is only used by the LegacyProtocol in compat mode bool sslSupported; - QDateTime coreStartTime; + QString coreInfo; }; @@ -141,6 +154,7 @@ struct LoginSuccess : public HandshakeMessage // TODO: more generic format struct SessionState : public HandshakeMessage { + inline SessionState() {} // needed for QMetaType (for the mono client) inline SessionState(const QVariantList &identities, const QVariantList &bufferInfos, const QVariantList &networkIds) : identities(identities), bufferInfos(bufferInfos), networkIds(networkIds) {} @@ -149,7 +163,6 @@ struct SessionState : public HandshakeMessage QVariantList networkIds; }; - /*** handled by SignalProxy ***/ struct SignalProxyMessage