* 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:
drbob 2012-11-06 19:18:11 +00:00
parent 076e07d5d9
commit c09cab4439
4 changed files with 158 additions and 13 deletions

View file

@ -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;
};