[xiph-cvs] r6607 - in icecast/trunk/icecast: conf src

msmith at xiph.org msmith at xiph.org
Tue May 4 21:30:17 PDT 2004



Author: msmith
Date: 2004-04-29 22:28:58 -0400 (Thu, 29 Apr 2004)
New Revision: 6607

Modified:
   icecast/trunk/icecast/conf/icecast.xml.in
   icecast/trunk/icecast/src/cfgfile.c
Log:
Disable burst-on-connect by default

<p><p>Modified: icecast/trunk/icecast/conf/icecast.xml.in
===================================================================
--- icecast/trunk/icecast/conf/icecast.xml.in	2004-04-29 15:23:13 UTC (rev 6606)
+++ icecast/trunk/icecast/conf/icecast.xml.in	2004-04-30 02:28:58 UTC (rev 6607)
@@ -7,9 +7,12 @@
         <client-timeout>30</client-timeout>
         <header-timeout>15</header-timeout>
         <source-timeout>10</source-timeout>
-        <!-- This will provide a burst of data when a client first connects,
-             thereby significantly reducing the startup time for a listener -->
-        <burst-on-connect>1</burst-on-connect>
+        <!-- If enabled, this will provide a burst of data when a client 
+             first connects, thereby significantly reducing the startup 
+             time for listeners that do substantial buffering. However,
+             it also significantly increases latency, so it's disabled
+             by default -->
+        <burst-on-connect>0</burst-on-connect>
     </limits>
 
     <authentication>

Modified: icecast/trunk/icecast/src/cfgfile.c
===================================================================
--- icecast/trunk/icecast/src/cfgfile.c	2004-04-29 15:23:13 UTC (rev 6606)
+++ icecast/trunk/icecast/src/cfgfile.c	2004-04-30 02:28:58 UTC (rev 6607)
@@ -339,7 +339,7 @@
     configuration->num_yp_directories = 0;
     configuration->relay_username = NULL;
     configuration->relay_password = NULL;
-    configuration->burst_on_connect = 1;
+    configuration->burst_on_connect = 0;
 }
 
 static void _parse_root(xmlDocPtr doc, xmlNodePtr node, 

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list