mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
added channels file clean up warning
added channels private key notification, and new private channel key behaviour (must subscribe to accept a private key) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3757 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
885d71370c
commit
6783e63ce0
@ -243,6 +243,22 @@ virtual bool channelShareKeys(std::string chId, std::list<std::string>& peers) =
|
||||
*
|
||||
*/
|
||||
virtual bool channelEditInfo(std::string chId, ChannelInfo &ci) = 0;
|
||||
|
||||
|
||||
/*!
|
||||
* get list of channels for which private publish key is available
|
||||
* @param grpIds list of channels for which private publish key is available
|
||||
*/
|
||||
virtual void getPubKeysAvailableGrpIds(std::list<std::string>& chanIds) = 0;
|
||||
|
||||
/*!
|
||||
*
|
||||
* get list of channels for which file contents will be cleaned out soon
|
||||
* @param warning contains msgs ids given a using channel id as the key for which warnings should issued to user
|
||||
* @parma limit the length of time before clean warning should be issued for a given id
|
||||
*
|
||||
*/
|
||||
virtual bool getCleanUpList(std::map<std::string, uint32_t>& warnings,const std::string& chId, uint32_t limit) = 0;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user