From bfeed7514ba590c8340a36aa9916b4b6baf11ef7 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 20 Jan 2014 23:34:32 +0500 Subject: [PATCH] add version to log --- src/mod/endpoints/mod_sofia/sofia.c | 5 +++++ src/mod/endpoints/mod_sofia/sofia_glue.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index a5308f0459..19ec32735c 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -7942,8 +7942,13 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia goto fail; } + sofia_glue_get_addr(de->data->e_msg, network_ip, sizeof(network_ip), &network_port); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(tech_pvt->session), SWITCH_LOG_DEBUG, "%s receiving invite from %s:%d version: %s\n", + switch_channel_get_name(tech_pvt->channel), network_ip, network_port, switch_version_full_human()); + + if (sip && sip->sip_via && sip->sip_via->v_protocol && switch_stristr("sip/2.0/ws", sip->sip_via->v_protocol)) { is_nat = "websockets"; } diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 69af0ec263..0ad5696780 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -1221,10 +1221,10 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) tech_pvt->session_refresher = nua_no_refresher; } - if (tech_pvt->mparams.local_sdp_str) { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(tech_pvt->session), SWITCH_LOG_DEBUG, - "Local SDP:\n%s\n", tech_pvt->mparams.local_sdp_str); - } + + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(tech_pvt->session), SWITCH_LOG_DEBUG, "%s sending invite version: %s\nLocal SDP:\n%s\n", + switch_channel_get_name(tech_pvt->channel), switch_version_full_human(), + tech_pvt->mparams.local_sdp_str ? tech_pvt->mparams.local_sdp_str : "NO SDP PRESENT\n"); if (sofia_use_soa(tech_pvt)) {