summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2015-09-05 15:42:32 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-09-05 15:42:32 -0500
commit3070dd0660ddec72ec6a1cd1a537d9769a194759 (patch)
tree53d666c9005f2db2644a220ee8dfdec881f409f2
parentd32e516c7cd48979db092a82b97a7ac4a743f526 (diff)
parent61c6c6aa6c60636207567a49c6320946c1840e99 (diff)
Merge "Fix when remote candidates exceed PJ_ICE_MAX_CAND" into 13
-rw-r--r--res/res_rtp_asterisk.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c
index 43615d6c8..adbec8297 100644
--- a/res/res_rtp_asterisk.c
+++ b/res/res_rtp_asterisk.c
@@ -706,8 +706,7 @@ static void ast_rtp_ice_start(struct ast_rtp_instance *instance)
ao2_iterator_destroy(&i);
if (has_rtp && has_rtcp &&
- pj_ice_sess_create_check_list(rtp->ice, &ufrag, &passwd, ao2_container_count(
- rtp->ice_active_remote_candidates), &candidates[0]) == PJ_SUCCESS) {
+ pj_ice_sess_create_check_list(rtp->ice, &ufrag, &passwd, cand_cnt, &candidates[0]) == PJ_SUCCESS) {
ast_test_suite_event_notify("ICECHECKLISTCREATE", "Result: SUCCESS");
pj_ice_sess_start_check(rtp->ice);
pj_timer_heap_poll(timer_heap, NULL);