forked from External/ergo
allow empty server password
This commit is contained in:
parent
8c43e6d2ed
commit
832a5e1e19
1 changed files with 4 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue