1
0
Fork 0
forked from External/ergo

theater: Remove THEATER command for now

This commit is contained in:
Daniel Oaks 2016-09-12 12:31:25 +10:00
parent 79d831bbb7
commit 266c534af9
7 changed files with 2 additions and 156 deletions

View file

@ -94,8 +94,6 @@ type Config struct {
Operator map[string]*PassConfig
Theater map[string]*PassConfig
Limits struct {
NickLen int `yaml:"nicklen"`
ChannelLen int `yaml:"channellen"`
@ -113,18 +111,6 @@ func (conf *Config) Operators() map[Name][]byte {
return operators
}
func (conf *Config) Theaters() map[Name][]byte {
theaters := make(map[Name][]byte)
for s, theaterConf := range conf.Theater {
name := NewName(s)
if !name.IsChannel() {
log.Fatal("config uses a non-channel for a theater!")
}
theaters[name] = theaterConf.PasswordBytes()
}
return theaters
}
func (conf *Config) TLSListeners() map[Name]*tls.Config {
tlsListeners := make(map[Name]*tls.Config)
for s, tlsListenersConf := range conf.Server.TLSListeners {