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

FreeSWITCH SVN stkn at freeswitch.org
Tue Apr 21 15:43:18 PDT 2009


Author: stkn
Date: Tue Apr 21 17:43:18 2009
New Revision: 13110

Log:
Change call counter status output for consistency

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

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	Tue Apr 21 17:43:18 2009
@@ -1672,10 +1672,10 @@
 					stream->write_function(stream, "AGGRESSIVENAT    \t%s\n", sofia_test_pflag(profile, PFLAG_AGGRESSIVE_NAT_DETECTION) ? "true" : "false");
 					stream->write_function(stream, "STUN-ENABLED     \t%s\n", sofia_test_pflag(profile, PFLAG_STUN_ENABLED) ? "true" : "false");
 					stream->write_function(stream, "STUN-AUTO-DISABLE\t%s\n", sofia_test_pflag(profile, PFLAG_STUN_AUTO_DISABLE) ? "true" : "false");
-					stream->write_function(stream, "CallsIN          \t%d\n", profile->ib_calls);
-					stream->write_function(stream, "FailedCallsIN    \t%d\n", profile->ib_failed_calls);
-					stream->write_function(stream, "CallsOUT         \t%d\n", profile->ob_calls);
-					stream->write_function(stream, "FailedCallsOUT   \t%d\n", profile->ob_failed_calls);
+					stream->write_function(stream, "CALLS-IN         \t%d\n", profile->ib_calls);
+					stream->write_function(stream, "FAILED-CALLS-IN  \t%d\n", profile->ib_failed_calls);
+					stream->write_function(stream, "CALLS-OUT        \t%d\n", profile->ob_calls);
+					stream->write_function(stream, "FAILED-CALLS-OUT \t%d\n", profile->ob_failed_calls);
 				}
 				stream->write_function(stream, "\nRegistrations:\n%s\n", line);
 



More information about the Freeswitch-svn mailing list