aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2018-01-03 00:37:38 +0100
committerAlexander Couzens <lynxis@fe80.eu>2018-01-03 00:37:38 +0100
commiteb57b9b3a1570bf809d0f67efed7ee2e418a05bc (patch)
treee48f674c94c46c71802f83faa504b487513ab899
parente35eeae8e0a3b57e4fd50bc6ad3bb7178a5ffe2b (diff)
add mgcp rtp loglynxis/34c3
-rw-r--r--src/libosmo-mgcp/mgcp_network.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libosmo-mgcp/mgcp_network.c b/src/libosmo-mgcp/mgcp_network.c
index ac7dc67a5..497bf3624 100644
--- a/src/libosmo-mgcp/mgcp_network.c
+++ b/src/libosmo-mgcp/mgcp_network.c
@@ -184,8 +184,9 @@ int mgcp_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn)
failed:
LOGP(DRTP, LOGL_ERROR,
- "endpoint:0x%x Failed to send dummy %s packet.\n",
- ENDPOINT_NUMBER(endp), was_rtcp ? "RTCP" : "RTP");
+ "endpoint:0x%x Failed to send dummy %s packet. 0x%x %d.\n",
+ ENDPOINT_NUMBER(endp), was_rtcp ? "RTCP" : "RTP", conn->end.addr, conn->end.rtcp_port);
+ LOGP(DRTP, LOGL_ERROR, "endpoint: 0x%x : dump %s", ENDPOINT_NUMBER(endp), mgcp_conn_dump(conn->conn));
return -1;
}