mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-08 17:15:16 -04:00
* Added back idKnown, and pgpHash to rsIdentity Group type. (needed in GUI)
* added in scheduling_tick() for coordinating background and pgphash ticks. * disabled Signatures until thread-safe version is present. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5782 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
076e07d5d9
commit
c09cab4439
4 changed files with 158 additions and 13 deletions
|
@ -60,6 +60,7 @@ std::string rsIdTypeToString(uint32_t idtype);
|
|||
class RsGxsIdGroup
|
||||
{
|
||||
public:
|
||||
RsGxsIdGroup():mPgpKnown(false) { return; }
|
||||
|
||||
|
||||
RsGroupMetaData mMeta;
|
||||
|
@ -80,6 +81,10 @@ class RsGxsIdGroup
|
|||
|
||||
std::string mPgpIdHash;
|
||||
std::string mPgpIdSign; // Need a signature as proof - otherwise anyone could add others Hashes.
|
||||
|
||||
// Serialised - for GUI's benefit.
|
||||
bool mPgpKnown;
|
||||
std::string mPgpId;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue