[xiph-commits] r7245 - icecast/branches/icecast-singleq/src
karl at dactyl.lonelymoon.com
karl
Wed Jul 21 13:23:57 PDT 2004
Author: karl
Date: Wed Jul 21 13:23:57 2004
New Revision: 7245
Modified:
icecast/branches/icecast-singleq/src/source.c
Log:
reduce per listener write limit
Modified: icecast/branches/icecast-singleq/src/source.c
===================================================================
--- icecast/branches/icecast-singleq/src/source.c 2004-07-21 20:01:08 UTC (rev 7244)
+++ icecast/branches/icecast-singleq/src/source.c 2004-07-21 20:23:56 UTC (rev 7245)
@@ -442,7 +442,7 @@
/* lets not send too much to one client in one go, but don't
sleep for too long if more data can be sent */
- if (total_written > 150000 || loop == 0)
+ if (total_written > 20000 || loop == 0)
{
source->short_delay = 1;
break;
More information about the commits
mailing list