mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-14 10:19:26 -04:00
Merge pull request #1862 from b1rdG/patch-1
Expose JSON API DistantChatConnexion methods
This commit is contained in:
commit
ad2c4c506f
1 changed files with 20 additions and 3 deletions
|
@ -988,6 +988,16 @@ virtual void getOwnAvatarData(unsigned char *& data,int& size) = 0 ;
|
|||
virtual uint32_t getDistantChatPermissionFlags()=0 ;
|
||||
virtual bool setDistantChatPermissionFlags(uint32_t flags)=0 ;
|
||||
|
||||
/**
|
||||
* @brief initiateDistantChatConnexion initiate a connexion for a distant chat
|
||||
* @jsonapi{development}
|
||||
* @param[in] to_pid RsGxsId to start the connection
|
||||
* @param[in] from_pid owned RsGxsId who start the connection
|
||||
* @param[out] pid distant chat id
|
||||
* @param[out] error_code if the connection can't be stablished
|
||||
* @param[in] notify notify remote that the connection is stablished
|
||||
* @return true on success
|
||||
*/
|
||||
virtual bool initiateDistantChatConnexion(
|
||||
const RsGxsId& to_pid, const RsGxsId& from_pid,
|
||||
DistantChatPeerId& pid, uint32_t& error_code,
|
||||
|
@ -1001,6 +1011,13 @@ virtual bool initiateDistantChatConnexion(
|
|||
* @return true on success
|
||||
*/
|
||||
virtual bool getDistantChatStatus(const DistantChatPeerId& pid, DistantChatPeerInfo& info)=0;
|
||||
|
||||
/**
|
||||
* @brief closeDistantChatConnexion
|
||||
* @jsonapi{development}
|
||||
* @param[in] pid distant chat id to close the connection
|
||||
* @return true on success
|
||||
*/
|
||||
virtual bool closeDistantChatConnexion(const DistantChatPeerId& pid)=0;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue