Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
b45c8e0a
Commit
b45c8e0a
authored
Aug 24, 2009
by
Alexandre Savard
Browse files
[#2006] Add call new state conferencing in deamon
parent
fadcb9ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
sflphone-common/src/call.cpp
View file @
b45c8e0a
...
...
@@ -134,6 +134,10 @@ Call::getStateStr ()
break
;
case
Conferencing
:
state_str
=
"CONFERENCING"
;
break
;
case
Refused
:
case
Error
:
...
...
sflphone-common/src/call.h
View file @
b45c8e0a
...
...
@@ -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
...
...
sflphone-common/src/managerimpl.cpp
View file @
b45c8e0a
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment