[asterisk-commits] jrose: branch 1.8 r414488 - /branches/1.8/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri May 23 11:07:08 CDT 2014
Author: jrose
Date: Fri May 23 11:06:57 2014
New Revision: 414488
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=414488
Log:
Backport Asterisk 11 r413876 to 1.8
........
r413876 | jrose | 2014-05-13 12:40:00 -0500 (Tue, 13 May 2014) | 6 lines
chan_sip: Add TLS and SRTP status to CLI command 'sip show channel'
ASTERISK-23564 #close
Reported by: Patrick Laimbock
Review: https://reviewboard.asterisk.org/r/3474/
Modified:
branches/1.8/channels/chan_sip.c
Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=414488&r1=414487&r2=414488
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Fri May 23 11:06:57 2014
@@ -19339,6 +19339,20 @@
return NULL;
}
+static const char *transport2str(enum sip_transport transport)
+{
+ switch (transport) {
+ case SIP_TRANSPORT_TLS:
+ return "TLS";
+ case SIP_TRANSPORT_UDP:
+ return "UDP";
+ case SIP_TRANSPORT_TCP:
+ return "TCP";
+ }
+
+ return "Undefined";
+}
+
/*! \brief Show details of one active dialog */
static char *sip_show_channel(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
@@ -19439,6 +19453,10 @@
ast_cli(a->fd, " S-Timer Cached Mode: %s\n", stmode2str(cur->stimer->st_cached_mode));
}
}
+
+ /* add transport and media types */
+ ast_cli(a->fd, " Transport: %s\n", transport2str(cur->socket.type));
+ ast_cli(a->fd, " Media: %s\n", cur->srtp ? "SRTP" : cur->rtp ? "RTP" : "None");
ast_cli(a->fd, "\n\n");
More information about the asterisk-commits
mailing list