Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoradio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
autoradio
Commits
1d89026a
Commit
1d89026a
authored
10 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
made some icecast parameters tunable using flags
parent
d30b6e6f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
node/icecast_config.go
+30
-29
30 additions, 29 deletions
node/icecast_config.go
with
30 additions
and
29 deletions
node/icecast_config.go
+
30
−
29
View file @
1d89026a
...
...
@@ -3,6 +3,7 @@ package node
import
(
"bytes"
"encoding/xml"
"flag"
"io"
"io/ioutil"
"log"
...
...
@@ -15,15 +16,22 @@ import (
)
var
(
icecastAdminPwFile
=
"/etc/icecast/.admin_pw"
icecastAdminPw
string
// The per-node icecast client limit is set to a very high
// value in order to disable the enforcement at the icecast
// level (
if everything goes well, the front-end traffic
//
management code should know
better).
//
TODO: make it a flag anyway.
// level (
the front-end traffic management code should know
// better).
//
icecastMaxClients = flag.Int("icecast-max-clients", 10000, "maximum number of Icecast clients")
maxClients
=
10000
icecastAdminPwFile
=
"/etc/icecast/.admin_pw"
icecastAdminPw
string
// Icecast tunables.
icecastQueueSize
=
flag
.
Int
(
"icecast-queue-size"
,
1
<<
20
,
"Icecast queue size (bytes)"
)
icecastClientTimeout
=
flag
.
Int
(
"icecast-client-timeout"
,
30
,
"Icecast client timeout (s)"
)
icecastHeaderTimeout
=
flag
.
Int
(
"icecast-header-timeout"
,
15
,
"Icecast header timeout (s)"
)
icecastSourceTimeout
=
flag
.
Int
(
"icecast-source-timeout"
,
60
,
"Icecast source timeout (s)"
)
icecastBurstSize
=
flag
.
Int
(
"icecast-burst-size"
,
131072
,
"Icecast connection burst size (bytes)"
)
)
// Return the global Icecast admin password. If it does not exist,
...
...
@@ -44,15 +52,13 @@ func getIcecastAdminPassword() string {
}
type
iceLimitsConfig
struct
{
Clients
int
`xml:"clients"`
Sources
int
`xml:"sources"`
// Threadpool int `xml:"threadpool"`
Clients
int
`xml:"clients"`
Sources
int
`xml:"sources"`
QueueSize
int
`xml:"queue-size"`
ClientTimeout
int
`xml:"client-timeout"`
HeaderTimeout
int
`xml:"header-timeout"`
SourceTimeout
int
`xml:"source-timeout"`
// BurstOnConnect int `xml:"burst-on-connect"`
BurstSize
int
`xml:"burst-size"`
BurstSize
int
`xml:"burst-size"`
}
type
iceAuthenticationConfig
struct
{
...
...
@@ -97,16 +103,16 @@ type iceRelayConfig struct {
}
type
iceMountConfig
struct
{
Name
string
`xml:"mount-name"`
Username
string
`xml:"username"`
Password
string
`xml:"password"`
// MaxListeners int `xml:"max-listeners"`
Name
string
`xml:"mount-name"`
Username
string
`xml:"username"`
Password
string
`xml:"password"`
FallbackMount
string
`xml:"fallback-mount,omitempty"`
FallbackOverride
int
`xml:"fallback-override,omitempty"`
Hidden
int
`xml:"hidden"`
// NoYp int `xml:"no-yp"`
OnConnect
string
`xml:"on-connect,omitempty"`
OnDisconnect
string
`xml:"on-disconnect,omitempty"`
OnConnect
string
`xml:"on-connect,omitempty"`
OnDisconnect
string
`xml:"on-disconnect,omitempty"`
// Public int `xml:"no-yp"`
// MaxListeners int `xml:"max-listeners"`
}
// Configuration of the local Icecast daemon. This is a write-only
...
...
@@ -137,9 +143,6 @@ type icecastConfig struct {
// to a file for persistence. It is not really meant to be used by the
// operator.
//
// TODO: Some of the parameters should probably be command-line flags,
// so that it is possible to set them on a per-host basis.
//
func
newIcecastConfig
(
publicIp
string
)
*
icecastConfig
{
// We don't use the global source password, but icecast is
// happier if it's set, so we just use a random password every
...
...
@@ -150,15 +153,13 @@ func newIcecastConfig(publicIp string) *icecastConfig {
return
&
icecastConfig
{
XMLName
:
xml
.
Name
{
""
,
"icecast"
},
Limits
:
iceLimitsConfig
{
Clients
:
maxClients
,
Sources
:
maxClients
/
2
,
// Threadpool: 16,
QueueSize
:
1
<<
20
,
ClientTimeout
:
30
,
HeaderTimeout
:
15
,
SourceTimeout
:
60
,
// BurstOnConnect: 1,
BurstSize
:
131072
,
Clients
:
maxClients
,
Sources
:
maxClients
/
2
,
QueueSize
:
*
icecastQueueSize
,
ClientTimeout
:
*
icecastClientTimeout
,
HeaderTimeout
:
*
icecastHeaderTimeout
,
SourceTimeout
:
*
icecastSourceTimeout
,
BurstSize
:
*
icecastBurstSize
,
},
Auth
:
iceAuthenticationConfig
{
SourcePassword
:
sourcePw
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment