use cl.Receive() instead of sv.sendReply() in registration
This commit is contained in:
parent
8abd193f75
commit
e5e497c2c4
|
@ -148,7 +148,7 @@ func (sv *Server) dispatcher() {
|
|||
case cl := <-sv.addq:
|
||||
clid := strings.ToLower(cl.Name())
|
||||
if _, exists := sv.clients[clid]; exists {
|
||||
sv.sendReply(cl.Name(), ERR_NICKNAMEINUSE, "", "Nickname is already in use")
|
||||
cl.Receive(irc.M("", ERR_NICKNAMEINUSE, cl.Name(), "Nickname is already in use"))
|
||||
go func() {
|
||||
time.Sleep(5 * time.Second)
|
||||
cl.Register(false)
|
||||
|
@ -157,7 +157,7 @@ func (sv *Server) dispatcher() {
|
|||
continue
|
||||
}
|
||||
if !sv.authCallback(cl.Name(), cl.Password()) {
|
||||
sv.sendReply(cl.Name(), ERR_PASSWDMISMATCH, "", "Password incorrect")
|
||||
cl.Receive(irc.M("", ERR_PASSWDMISMATCH, cl.Name(), "Password incorrect"))
|
||||
go func() {
|
||||
time.Sleep(5 * time.Second)
|
||||
cl.Register(false)
|
||||
|
|
Loading…
Reference in New Issue