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
f1e355a5
Commit
f1e355a5
authored
Oct 15, 2020
by
johan
Browse files
Fix after rebase
parent
ae0f4195
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
tester/external_domain_tester.c
tester/external_domain_tester.c
+2
-2
tester/group_chat_tester.c
tester/group_chat_tester.c
+1
-1
No files found.
tester/external_domain_tester.c
View file @
f1e355a5
...
...
@@ -57,7 +57,7 @@ static void group_chat (bool_t encryption, bool_t external_sender) {
bctbx_list_t
*
coresList
=
init_core_for_conference
(
coresManagerList
);
const
char
*
sFactoryUri
=
"sip:conference-factory@conf.external-domain.org"
;
bctbx_list_t
*
externalCoresList
=
init_core_for_conference_with_factor
i
_uri
(
externalCoresManagerList
,
sFactoryUri
);
bctbx_list_t
*
externalCoresList
=
init_core_for_conference_with_factor
y
_uri
(
externalCoresManagerList
,
sFactoryUri
);
start_core_for_conference
(
coresManagerList
);
start_core_for_conference
(
externalCoresManagerList
);
...
...
@@ -90,7 +90,7 @@ static void group_chat (bool_t encryption, bool_t external_sender) {
// Check that the chat room is correctly created on Pauline's side and that the participants are added
LinphoneChatRoom
*
paulineCr
=
check_creation_chat_room_client_side
(
coresList
,
pauline
,
&
initialPaulineStats
,
confAddr
,
initialSubject
,
2
,
FALSE
);
BC_ASSERT_TRUE
(
wait_for_list
(
coresList
,
&
claire
->
stat
.
number_of_LinphoneC
hatRoom
StateCreationPending
,
initialClaireStats
.
number_of_LinphoneC
hatRoom
StateCreationPending
+
1
,
5000
));
BC_ASSERT_TRUE
(
wait_for_list
(
coresList
,
&
claire
->
stat
.
number_of_LinphoneC
onference
StateCreationPending
,
initialClaireStats
.
number_of_LinphoneC
onference
StateCreationPending
+
1
,
5000
));
// Check that the chat room is correctly created on Claire's side and that the participants are added
LinphoneChatRoom
*
claireCr
=
check_creation_chat_room_client_side
(
coresList
,
claire
,
&
initialClaireStats
,
confAddr
,
initialSubject
,
2
,
FALSE
);
...
...
tester/group_chat_tester.c
View file @
f1e355a5
...
...
@@ -379,7 +379,7 @@ void _receive_file(bctbx_list_t *coresList, LinphoneCoreManager *lcm, stats *rec
// Configure list of core manager for conference and add the listener
bctbx_list_t
*
init_core_for_conference_with_factory_uri
(
bctbx_list_t
*
coreManagerList
,
const
char
*
factoryUri
)
{
LinphoneAddress
*
factoryAddr
=
linphone_address_new
(
sF
actoryUri
);
LinphoneAddress
*
factoryAddr
=
linphone_address_new
(
f
actoryUri
);
bctbx_list_for_each2
(
coreManagerList
,
(
void
(
*
)(
void
*
,
void
*
))
_configure_core_for_conference
,
(
void
*
)
factoryAddr
);
linphone_address_unref
(
factoryAddr
);
...
...
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