plugins: add callId to API

Change-Id: I2b59205b9ad2f75c6c8602a5a273a7d8115e5db6
This commit is contained in:
agsantos
2020-10-23 18:57:00 -04:00
committed by Adrien Béraud
parent 75ec461623
commit 69f559976e
11 changed files with 100 additions and 120 deletions

View File

@ -37,9 +37,9 @@ std::vector<std::string> listLoadedPlugins();
int installPlugin(const std::string& jplPath, bool force);
int uninstallPlugin(const std::string& pluginRootPath);
std::vector<std::string> listCallMediaHandlers();
void toggleCallMediaHandler(const std::string& id, bool toggle);
std::map<std::string,std::string> getCallMediaHandlerDetails(const std::string& id);
void toggleCallMediaHandler(const std::string& mediaHandlerId, const std::string& callId, bool toggle);
std::map<std::string,std::string> getCallMediaHandlerDetails(const std::string& mediaHandlerId);
bool getPluginsEnabled();
void setPluginsEnabled(bool state);
std::map<std::string,std::string> getCallMediaHandlerStatus();
std::map<std::string, std::vector<std::string>> getCallMediaHandlerStatus(const std::string& callId);
}