From 741c51bb61712e29dacca6c65448a9e1e8d776d9 Mon Sep 17 00:00:00 2001 From: Keith Date: Fri, 31 Aug 2018 16:01:12 +0200 Subject: [PATCH] Logging: Add debug logging for status/causes Adds some DEBUG level logging for SIP status and MNCC causes. Change-Id: Ib56e34ba079c7927e932c1b29d3e8341b8099ae0 --- src/mncc.c | 8 ++++++-- src/sip.c | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/mncc.c b/src/mncc.c index ae60321..4cdc0b3 100644 --- a/src/mncc.c +++ b/src/mncc.c @@ -264,7 +264,7 @@ static void mncc_call_leg_release(struct call_leg *_leg) case MNCC_CC_PROCEEDING: case MNCC_CC_CONNECTED: LOGP(DMNCC, LOGL_DEBUG, - "Releasing call in non-initial leg(%u)\n", leg->callref); + "Releasing call in non-initial leg(%u) cause(%d)\n", leg->callref, leg->base.cause); leg->base.in_release = true; start_cmd_timer(leg, MNCC_REL_IND); mncc_send(leg->conn, MNCC_DISC_REQ, leg->callref); @@ -507,6 +507,8 @@ static void check_disc_ind(struct mncc_connection *conn, const char *buf, int rc if (!leg) return; + LOGP(DMNCC, + LOGL_DEBUG, "Rcvd MNCC_DISC_IND, Cause: %d\n", data->cause.value); LOGP(DMNCC, LOGL_DEBUG, "leg(%u) was disconnected. Releasing\n", data->callref); leg->base.in_release = true; @@ -529,6 +531,8 @@ static void check_rel_ind(struct mncc_connection *conn, const char *buf, int rc) if (!leg) return; + LOGP(DMNCC, LOGL_DEBUG, "Rcvd MNCC_REL_IND, Cause: %d\n", data->cause.value); + if (leg->base.in_release) stop_cmd_timer(leg, MNCC_REL_IND); else { @@ -587,7 +591,7 @@ static void check_rej_ind(struct mncc_connection *conn, const char *buf, int rc) other_leg->cause = data->cause.value; other_leg->release_call(other_leg); } - LOGP(DMNCC, LOGL_DEBUG, "leg(%u) was rejected.\n", data->callref); + LOGP(DMNCC, LOGL_DEBUG, "leg(%u) was rejected with cause(%d).\n", data->callref, leg->cause); mncc_leg_release(leg); } diff --git a/src/sip.c b/src/sip.c index 088dbc3..c9f5abb 100644 --- a/src/sip.c +++ b/src/sip.c @@ -239,12 +239,13 @@ void nua_callback(nua_event_t event, int status, char const *phrase, nua_t *nua, else if (status >= 300) { struct call_leg *other = call_leg_other(&leg->base); - LOGP(DSIP, LOGL_ERROR, "leg(%p) unknown err, releasing.\n", leg); + LOGP(DSIP, LOGL_ERROR, "leg(%p) unknown SIP status(%d), releasing.\n", leg, status); nua_cancel(leg->nua_handle, TAG_END()); nua_handle_destroy(leg->nua_handle); call_leg_release(&leg->base); if (other) { + LOGP(DSIP, LOGL_DEBUG, "Releasing other leg (%p) with status(%d)\n", other, status); other->cause = status2cause(status); other->release_call(other); } @@ -326,6 +327,7 @@ static void sip_release_call(struct call_leg *_leg) * to help us here. */ + LOGP(DSIP, LOGL_DEBUG, "%s(): Release with MNCC cause(%d)\n", __func__, _leg->cause); cause2status(_leg->cause, &sip_cause, &sip_phrase, &reason_text); snprintf(reason, sizeof reason, "Q.850;cause=%u;text=\"%s\"", _leg->cause, reason_text);