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