allow empty server password

This commit is contained in:
Jeremy Latt 2014-03-06 11:00:48 -08:00
parent 8c43e6d2ed
commit 832a5e1e19
1 changed files with 4 additions and 1 deletions

View File

@ -44,11 +44,14 @@ func NewServer(config *Config) *Server {
name: config.Server.Name,
newConns: make(chan net.Conn, 16),
operators: config.Operators(),
password: config.Server.PasswordBytes(),
signals: make(chan os.Signal, 1),
timeout: make(chan *Client, 16),
}
if config.Server.Password != "" {
server.password = config.Server.PasswordBytes()
}
server.loadChannels()
for _, addr := range config.Server.Listen {