Skip to content
Snippets Groups Projects
Commit ffab4d52 authored by Joshua Colp's avatar Joshua Colp
Browse files

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
parent cd40e179
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment