Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
cd47258b
Commit
cd47258b
authored
Apr 30, 2004
by
Michael Smith
Browse files
Disable burst-on-connect by default
svn path=/icecast/trunk/icecast/; revision=6607
parent
32718b5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
conf/icecast.xml.in
View file @
cd47258b
...
...
@@ -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>
...
...
src/cfgfile.c
View file @
cd47258b
...
...
@@ -339,7 +339,7 @@ static void _set_defaults(ice_config_t *configuration)
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
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment