From: Joshua Colp Date: Thu, 20 Jun 2013 21:13:17 +0000 (+0000) Subject: Add a log message for when an incoming session is rejected due to the extension not... X-Git-Tag: 13.0.0-beta1~1642 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ffab4d52f1100021af7e0f4c814c94938d2ae942;p=thirdparty%2Fasterisk.git Add a log message for when an incoming session is rejected due to the extension not being found. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392364 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_sip_session.c b/res/res_sip_session.c index 5613078b9e..7be75ab1d8 100644 --- a/res/res_sip_session.c +++ b/res/res_sip_session.c @@ -1167,6 +1167,10 @@ static void handle_new_invite_request(pjsip_rx_data *rdata) case SIP_GET_DEST_EXTEN_NOT_FOUND: case SIP_GET_DEST_EXTEN_PARTIAL: default: + ast_log(LOG_NOTICE, "Call from '%s' (%s:%s:%d) to extension '%s' rejected because extension not found in context '%s'.\n", + ast_sorcery_object_get_id(session->endpoint), rdata->tp_info.transport->type_name, rdata->pkt_info.src_name, + rdata->pkt_info.src_port, session->exten, session->endpoint->context); + if (pjsip_inv_initial_answer(inv_session, rdata, 404, NULL, NULL, &tdata) == PJ_SUCCESS) { ast_sip_session_send_response(session, tdata); } else {