Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
93
Issues
93
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
cd47258b
Commit
cd47258b
authored
Apr 30, 2004
by
Michael Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable burst-on-connect by default
svn path=/icecast/trunk/icecast/; revision=6607
parent
32718b5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
conf/icecast.xml.in
conf/icecast.xml.in
+6
-3
src/cfgfile.c
src/cfgfile.c
+1
-1
No files found.
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
Markdown
is supported
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