[Freeswitch-svn] [commit] r13389 - in freeswitch/trunk: conf/sip_profiles src/mod/endpoints/mod_sofia

FreeSWITCH SVN anthm at freeswitch.org
Tue May 19 10:49:22 PDT 2009


Author: anthm
Date: Tue May 19 12:49:21 2009
New Revision: 13389

Log:
make autoflush on bridge the default

Modified:
   freeswitch/trunk/conf/sip_profiles/internal.xml
   freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c

Modified: freeswitch/trunk/conf/sip_profiles/internal.xml
==============================================================================
--- freeswitch/trunk/conf/sip_profiles/internal.xml	(original)
+++ freeswitch/trunk/conf/sip_profiles/internal.xml	Tue May 19 12:49:21 2009
@@ -94,8 +94,8 @@
     <param name="tls-version" value="$${sip_tls_version}"/>
 
     <!-- turn on auto-flush during bridge (skip timer sleep when the socket already has data) 
-	 (reduces delay on latent connections but may cause audio hiccups ) -->
-    <!--<param name="rtp-autoflush-during-bridge" value="true"/>-->
+	 (reduces delay on latent connections default true, must be disabled explicitly)-->
+    <!--<param name="rtp-autoflush-during-bridge" value="false"/>-->
     
     <!--If you don't want to pass through timestamps from 1 RTP call to another (on a per call basis with rtp_rewrite_timestamps chanvar)-->
     <!--<param name="rtp-rewrite-timestamps" value="true"/>-->

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	Tue May 19 12:49:21 2009
@@ -2016,6 +2016,7 @@
 				profile->auto_restart = 1;
 				sofia_set_pflag(profile, PFLAG_AUTOFIX_TIMING);
 				sofia_set_pflag(profile, PFLAG_MESSAGE_QUERY_ON_REGISTER);
+				sofia_set_pflag(profile, PFLAG_RTP_AUTOFLUSH_DURING_BRIDGE);
 
 				for (param = switch_xml_child(settings, "param"); param; param = param->next) {
 					char *var = (char *) switch_xml_attr_soft(param, "name");



More information about the Freeswitch-svn mailing list