X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fpeer.cpp;h=1d459b67f34a47edc956c636726dde633f71b76c;hp=14041597310464ccbe619cfa3ca2b58e4ce72c0f;hb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609 diff --git a/src/common/peer.cpp b/src/common/peer.cpp index 14041597..1d459b67 100644 --- a/src/common/peer.cpp +++ b/src/common/peer.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,3 +32,69 @@ AuthHandler *Peer::authHandler() const { return _authHandler; } + +QDateTime Peer::connectedSince() const { + return _connectedSince; +} + +void Peer::setConnectedSince(const QDateTime &connectedSince) { + _connectedSince = connectedSince; +} + +QString Peer::buildDate() const { + return _buildDate; +} + +void Peer::setBuildDate(const QString &buildDate) { + _buildDate = buildDate; +} + +QString Peer::clientVersion() const { + return _clientVersion; +} + +void Peer::setClientVersion(const QString &clientVersion) { + _clientVersion = clientVersion; +} + +bool Peer::hasFeature(Quassel::Feature feature) const { + return _features.isEnabled(feature); +} + +Quassel::Features Peer::features() const +{ + return _features; +} + +void Peer::setFeatures(Quassel::Features features) { + _features = std::move(features); +} + +int Peer::id() const { + return _id; +} + +void Peer::setId(int id) { + _id = id; +} + +// PeerPtr is used in RPC signatures for enabling receivers to send replies +// to a particular peer rather than broadcast to all connected ones. +// To enable this, the SignalProxy transparently replaces the bogus value +// received over the network with the actual address of the local Peer +// instance. Because the actual value isn't needed on the wire, it is +// serialized as null. +QDataStream &operator<<(QDataStream &out, PeerPtr ptr) +{ + Q_UNUSED(ptr); + out << static_cast(0); // 64 bit for historic reasons + return out; +} + +QDataStream &operator>>(QDataStream &in, PeerPtr &ptr) +{ + ptr = nullptr; + quint64 value; + in >> value; + return in; +}