summaryrefslogtreecommitdiff
path: root/res/res_rtp_asterisk.c
diff options
context:
space:
mode:
authorSean Bright <sean.bright@gmail.com>2017-07-25 16:17:45 -0400
committerSean Bright <sean.bright@gmail.com>2017-07-26 16:16:41 -0500
commitb3914df10bbb61494f3023a8a22894e4aeeadf05 (patch)
treee0f64f40f7c4b838207860e10ca5ab06860394d8 /res/res_rtp_asterisk.c
parent1bec535df2e8a7968a810cbef594fa17f7b642bc (diff)
res_rtp_asterisk: Fix mapping of pjsip's ICE roles to ours
Change-Id: Ia578ede1a55b21014581793992a429441903278b
Diffstat (limited to 'res/res_rtp_asterisk.c')
-rw-r--r--res/res_rtp_asterisk.c38
1 files changed, 35 insertions, 3 deletions
diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c
index 70561d0b6..65ab9020f 100644
--- a/res/res_rtp_asterisk.c
+++ b/res/res_rtp_asterisk.c
@@ -701,6 +701,37 @@ static void ice_wrap_dtor(void *vdoomed)
}
}
+static void ast2pj_rtp_ice_role(enum ast_rtp_ice_role ast_role, enum pj_ice_sess_role *pj_role)
+{
+ switch (ast_role) {
+ case AST_RTP_ICE_ROLE_CONTROLLED:
+ *pj_role = PJ_ICE_SESS_ROLE_CONTROLLED;
+ break;
+ case AST_RTP_ICE_ROLE_CONTROLLING:
+ *pj_role = PJ_ICE_SESS_ROLE_CONTROLLING;
+ break;
+ }
+}
+
+static void pj2ast_rtp_ice_role(enum pj_ice_sess_role pj_role, enum ast_rtp_ice_role *ast_role)
+{
+ switch (pj_role) {
+ case PJ_ICE_SESS_ROLE_CONTROLLED:
+ *ast_role = AST_RTP_ICE_ROLE_CONTROLLED;
+ return;
+ case PJ_ICE_SESS_ROLE_CONTROLLING:
+ *ast_role = AST_RTP_ICE_ROLE_CONTROLLING;
+ return;
+ case PJ_ICE_SESS_ROLE_UNKNOWN:
+ /* Don't change anything */
+ return;
+ default:
+ /* If we aren't explicitly handling something, it's a bug */
+ ast_assert(0);
+ return;
+ }
+}
+
/*! \pre instance is locked */
static int ice_reset_session(struct ast_rtp_instance *instance)
{
@@ -717,8 +748,9 @@ static int ice_reset_session(struct ast_rtp_instance *instance)
res = ice_create(instance, &rtp->ice_original_rtp_addr, rtp->ice_port, 1);
if (!res) {
/* Use the current expected role for the ICE session */
- pj_ice_sess_change_role(rtp->ice->real_ice, rtp->role == AST_RTP_ICE_ROLE_CONTROLLED ?
- PJ_ICE_SESS_ROLE_CONTROLLED : PJ_ICE_SESS_ROLE_CONTROLLING);
+ enum pj_ice_sess_role role = PJ_ICE_SESS_ROLE_UNKNOWN;
+ ast2pj_rtp_ice_role(rtp->role, &role);
+ pj_ice_sess_change_role(rtp->ice->real_ice, role);
}
/* If we only have one component now, and we previously set up TURN for RTCP,
@@ -790,7 +822,7 @@ static void ast_rtp_ice_start(struct ast_rtp_instance *instance)
ao2_cleanup(rtp->ice_proposed_remote_candidates);
rtp->ice_proposed_remote_candidates = NULL;
/* If this ICE session is being preserved then go back to the role it currently is */
- rtp->role = rtp->ice->real_ice->role;
+ pj2ast_rtp_ice_role(rtp->ice->real_ice->role, &rtp->role);
return;
}