[Freeswitch-svn] [commit] r7294 - freeswitch/trunk/src/mod/endpoints/mod_sofia

Freeswitch SVN stkn at freeswitch.org
Fri Jan 18 20:28:37 EST 2008


Author: stkn
Date: Fri Jan 18 20:28:36 2008
New Revision: 7294

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c

Log:
Ouput a second line with tls_url and (TLS) in sofia status for tls enabled profiles

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	Fri Jan 18 20:28:36 2008
@@ -1260,6 +1260,12 @@
 			} else {
 				stream->write_function(stream, "%25s\t%s\t  %32s\t%s (%u)\n", profile->name, "profile", profile->url,
 									   sofia_test_pflag(profile, PFLAG_RUNNING) ? "RUNNING" : "DOWN", profile->inuse);
+
+				if (sofia_test_pflag(profile, PFLAG_TLS)) {
+				stream->write_function(stream, "%25s\t%s\t  %32s\t%s (%u) (TLS)\n", profile->name, "profile", profile->tls_url,
+									   sofia_test_pflag(profile, PFLAG_RUNNING) ? "RUNNING" : "DOWN", profile->inuse);
+				}
+
 				c++;
 
 				for (gp = profile->gateways; gp; gp = gp->next) {



More information about the Freeswitch-svn mailing list