Skip to content
Snippets Groups Projects
Commit b45c8e0a authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2006] Add call new state conferencing in deamon

parent fadcb9ba
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,10 @@ Call::getStateStr ()
break;
case Conferencing:
state_str = "CONFERENCING";
break;
case Refused:
case Error:
......
......@@ -67,7 +67,7 @@ class Call{
/**
* The Call State.
*/
enum CallState {Inactive, Active, Hold, Busy, Refused, Error};
enum CallState {Inactive, Active, Hold, Busy, Conferencing, Refused, Error};
/**
* Constructor of a call
......
......@@ -2572,6 +2572,7 @@ ManagerImpl::getCallStatus (const std::string& sequenceId UNUSED)
switch (call->getState()) {
case Call::Active:
case Call::Conferencing:
code="112";
status = "Established";
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment