mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-13 00:25:48 -04:00
added anon ids to offline vetting
This commit is contained in:
parent
57f4463864
commit
981f81deae
13 changed files with 138 additions and 46 deletions
|
@ -612,8 +612,8 @@ void IdDialog::circle_selected()
|
|||
|
||||
std::set<RsGxsId> members = details.mAllowedAnonPeers;
|
||||
|
||||
for(std::map<RsPgpId, std::list<RsGxsId> >::iterator it = details.mAllowedSignedPeers.begin(); it != details.mAllowedSignedPeers.end(); ++it)
|
||||
for(std::list<RsGxsId>::const_iterator it2=it->second.begin();it2!=it->second.end();++it2)
|
||||
for(std::map<RsPgpId, std::set<RsGxsId> >::iterator it = details.mAllowedSignedPeers.begin(); it != details.mAllowedSignedPeers.end(); ++it)
|
||||
for(std::set<RsGxsId>::const_iterator it2=it->second.begin();it2!=it->second.end();++it2)
|
||||
{
|
||||
members.insert( (*it2) ) ;
|
||||
std::cerr << "Circle member: " << it->first;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue