summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2017-03-15 23:03:52 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-03-15 23:03:52 -0500
commit5fdd61b556a5a20cbe83fa0642fd343941360784 (patch)
tree43a944f7a25766858e4aeb6b23796313339a5127
parent300b2570458eecd1480781378cea1cf3109049c4 (diff)
parentdc4cdafd429b1dee46f955c08a48dcb6d0c593cd (diff)
Merge "res/res_pjsip_refer: call xfer w/o extension"
-rw-r--r--res/res_pjsip_refer.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/res/res_pjsip_refer.c b/res/res_pjsip_refer.c
index aa2af0933..0f4a95c77 100644
--- a/res/res_pjsip_refer.c
+++ b/res/res_pjsip_refer.c
@@ -822,6 +822,13 @@ static int refer_incoming_blind_request(struct ast_sip_session *session, pjsip_r
*/
AST_SIP_USER_OPTIONS_TRUNCATE_CHECK(exten);
+ /* Uri without exten */
+ if (ast_strlen_zero(exten)) {
+ ast_copy_string(exten, "s", sizeof(exten));
+ ast_debug(3, "Channel '%s' from endpoint '%s' attempted blind transfer to a target without extension. Target was set to 's@%s'\n",
+ ast_channel_name(session->channel), ast_sorcery_object_get_id(session->endpoint), context);
+ }
+
if (!ast_exists_extension(NULL, context, exten, 1, NULL)) {
ast_log(LOG_ERROR, "Channel '%s' from endpoint '%s' attempted blind transfer to '%s@%s' but target does not exist\n",
ast_channel_name(session->channel), ast_sorcery_object_get_id(session->endpoint), exten, context);