Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
23
Merge Requests
23
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
f9fb482d
Commit
f9fb482d
authored
Jan 16, 2017
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix memory leaks
parent
16dadb5f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
vtables.c
coreapi/vtables.c
+2
-2
register_tester.c
tester/register_tester.c
+10
-5
No files found.
coreapi/vtables.c
View file @
f9fb482d
...
...
@@ -49,9 +49,9 @@ static void cleanup_dead_vtable_refs(LinphoneCore *lc){
for
(
it
=
lc
->
vtable_refs
;
it
!=
NULL
;
){
VTableReference
*
ref
=
(
VTableReference
*
)
it
->
data
;
next_it
=
it
->
next
;
if
(
ref
->
valid
==
0
){
ref
->
valid
=
0
;
if
(
ref
->
valid
==
0
){
lc
->
vtable_refs
=
bctbx_list_erase_link
(
lc
->
vtable_refs
,
it
);
belle_sip_object_unref
(
ref
->
cbs
);
ms_free
(
ref
);
}
it
=
next_it
;
...
...
tester/register_tester.c
View file @
f9fb482d
...
...
@@ -26,6 +26,7 @@ static void auth_info_requested(LinphoneCore *lc, const char *realm, const char
LinphoneAuthInfo
*
info
;
info
=
linphone_auth_info_new
(
test_username
,
NULL
,
test_password
,
NULL
,
realm
,
domain
);
linphone_core_add_auth_info
(
lc
,
info
);
linphone_auth_info_destroy
(
info
);
}
static
void
authentication_requested
(
LinphoneCore
*
lc
,
LinphoneAuthInfo
*
auth_info
,
LinphoneAuthMethod
method
)
{
...
...
@@ -121,6 +122,7 @@ static void register_with_refresh_base_3(LinphoneCore* lc
BC_ASSERT_EQUAL
(
linphone_proxy_config_get_error
(
proxy_cfg
),
LinphoneReasonUnauthorized
,
int
,
"%d"
);
info
=
linphone_auth_info_new
(
test_username
,
NULL
,
test_password
,
NULL
,
auth_domain
,
NULL
);
/*create authentication structure from identity*/
linphone_core_add_auth_info
(
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
}
}
if
(
linphone_proxy_config_get_error
(
proxy_cfg
)
==
LinphoneReasonBadCredentials
...
...
@@ -169,7 +171,7 @@ static void register_with_refresh_with_send_error(void) {
char
route
[
256
];
sprintf
(
route
,
"sip:%s"
,
test_route
);
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
register_with_refresh_base
(
lcm
->
lc
,
TRUE
,
auth_domain
,
route
);
/*simultate a network error*/
sal_set_send_error
(
lcm
->
lc
->
sal
,
-
1
);
...
...
@@ -311,6 +313,7 @@ static void simple_authenticated_register(void){
char
route
[
256
];
sprintf
(
route
,
"sip:%s"
,
test_route
);
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
counters
=
&
lcm
->
stat
;
register_with_refresh
(
lcm
,
FALSE
,
auth_domain
,
route
);
BC_ASSERT_EQUAL
(
counters
->
number_of_auth_info_requested
,
0
,
int
,
"%d"
);
...
...
@@ -327,6 +330,7 @@ static void ha1_authenticated_register(void){
info
=
linphone_auth_info_new
(
test_username
,
NULL
,
NULL
,
ha1
,
auth_domain
,
NULL
);
/*create authentication structure from identity*/
sprintf
(
route
,
"sip:%s"
,
test_route
);
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
counters
=
&
lcm
->
stat
;
register_with_refresh
(
lcm
,
FALSE
,
auth_domain
,
route
);
BC_ASSERT_EQUAL
(
counters
->
number_of_auth_info_requested
,
0
,
int
,
"%d"
);
...
...
@@ -398,7 +402,7 @@ static void authenticated_register_with_provided_credentials(void){
ai
=
linphone_auth_info_new
(
test_username
,
NULL
,
test_password
,
NULL
,
NULL
,
NULL
);
linphone_core_add_auth_info
(
lcm
->
lc
,
ai
);
linphone_auth_info_destroy
(
ai
);
linphone_core_add_proxy_config
(
lcm
->
lc
,
cfg
);
BC_ASSERT_TRUE
(
wait_for
(
lcm
->
lc
,
lcm
->
lc
,
&
counters
->
number_of_LinphoneRegistrationOk
,
1
));
...
...
@@ -448,6 +452,7 @@ static void authenticated_register_with_wrong_credentials_with_params_base(const
linphone_core_set_user_agent
(
lcm
->
lc
,
user_agent
,
NULL
);
}
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add wrong authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
counters
=
get_stats
(
lcm
->
lc
);
register_with_refresh_base_3
(
lcm
->
lc
,
TRUE
,
auth_domain
,
route
,
FALSE
,
transport
,
LinphoneRegistrationFailed
);
//BC_ASSERT_EQUAL(counters->number_of_auth_info_requested,3, int, "%d"); register_with_refresh_base_3 does not alow to precisely check number of number_of_auth_info_requested
...
...
@@ -634,7 +639,7 @@ static void proxy_transport_change(void){
char
*
addr_as_string
;
LinphoneAuthInfo
*
info
=
linphone_auth_info_new
(
test_username
,
NULL
,
test_password
,
NULL
,
auth_domain
,
NULL
);
/*create authentication structure from identity*/
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
register_with_refresh_base
(
lcm
->
lc
,
FALSE
,
auth_domain
,
NULL
);
proxy_config
=
linphone_core_get_default_proxy_config
(
lcm
->
lc
);
...
...
@@ -671,7 +676,7 @@ static void proxy_transport_change_with_wrong_port(void) {
sprintf
(
route
,
"sip:%s"
,
test_route
);
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
register_with_refresh_base_3
(
lcm
->
lc
,
FALSE
,
auth_domain
,
"sip2.linphone.org:5987"
,
0
,
transport
,
LinphoneRegistrationProgress
);
proxy_config
=
linphone_core_get_default_proxy_config
(
lcm
->
lc
);
...
...
@@ -702,7 +707,7 @@ static void proxy_transport_change_with_wrong_port_givin_up(void) {
sprintf
(
route
,
"sip:%s"
,
test_route
);
linphone_core_add_auth_info
(
lcm
->
lc
,
info
);
/*add authentication info to LinphoneCore*/
linphone_auth_info_destroy
(
info
);
register_with_refresh_base_3
(
lcm
->
lc
,
FALSE
,
auth_domain
,
"sip2.linphone.org:5987"
,
0
,
transport
,
LinphoneRegistrationProgress
);
proxy_config
=
linphone_core_get_default_proxy_config
(
lcm
->
lc
);
...
...
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