Skip to content
Snippets Groups Projects
Commit 0811b004 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

jni: add volatileAccountsChanged signal handler

Does nothing for the time being
parent 839995ba
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,7 @@ public:
virtual void configOnStunStatusFail(const std::string& account_id){}
virtual void configOnRegistrationStateChange(const std::string& account_id, int state){}
virtual void configOnSipRegistrationStateChange(const std::string& account_id, const std::string& state, int code){}
virtual void configOnVolatileAccountsChange(const std::string& account_id, const std::map<std::string, std::string>& details){}
virtual void configOnError(int alert){}
virtual std::vector<int32_t> configGetHardwareAudioFormat(void){}
};
......
......@@ -125,6 +125,7 @@ void init(ConfigurationCallback* conf_cb, Callback* call_cb) {
bind(&ConfigurationCallback::configOnStunStatusFail, conf_cb, _1),
bind(&ConfigurationCallback::configOnRegistrationStateChange, conf_cb, _1, _2),
bind(&ConfigurationCallback::configOnSipRegistrationStateChange, conf_cb, _1, _2, _3),
bind(&ConfigurationCallback::configOnVolatileAccountsChange, conf_cb, _1, _2),
bind(&ConfigurationCallback::configOnError, conf_cb, _1)
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment