Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
f838206f
Commit
f838206f
authored
Jan 08, 2016
by
François Grisez
Browse files
Save a copy of the list of participants in linphone_conference_get_participants()
parent
b118f358
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/conference.cc
View file @
f838206f
...
...
@@ -845,7 +845,7 @@ int linphone_conference_get_participant_count(const LinphoneConference *obj) {
}
MSList
*
linphone_conference_get_participants
(
const
LinphoneConference
*
obj
)
{
const
list
<
Participant
>
participants
=
((
Conference
*
)
obj
)
->
getParticipants
();
const
list
<
Participant
>
&
participants
=
((
Conference
*
)
obj
)
->
getParticipants
();
MSList
*
participants_list
=
NULL
;
for
(
list
<
Participant
>::
const_iterator
it
=
participants
.
begin
();
it
!=
participants
.
end
();
it
++
)
{
LinphoneAddress
*
uri
=
linphone_address_clone
(
it
->
getUri
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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