Handle upstream ERROR messages
This commit is contained in:
parent
9fd69c745e
commit
0831dbe6f1
@ -1343,6 +1343,12 @@ func (uc *upstreamConn) handleMessage(msg *irc.Message) error {
|
|||||||
// Ignore
|
// Ignore
|
||||||
case irc.RPL_STATSVLINE, rpl_statsping, irc.RPL_STATSBLINE, irc.RPL_STATSDLINE:
|
case irc.RPL_STATSVLINE, rpl_statsping, irc.RPL_STATSBLINE, irc.RPL_STATSDLINE:
|
||||||
// Ignore
|
// Ignore
|
||||||
|
case "ERROR":
|
||||||
|
var text string
|
||||||
|
if err := parseMessageParams(msg, &text); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return fmt.Errorf("fatal server error: %v", text)
|
||||||
case irc.ERR_PASSWDMISMATCH, irc.ERR_ERRONEUSNICKNAME, irc.ERR_NICKNAMEINUSE, irc.ERR_NICKCOLLISION, irc.ERR_UNAVAILRESOURCE, irc.ERR_NOPERMFORHOST, irc.ERR_YOUREBANNEDCREEP:
|
case irc.ERR_PASSWDMISMATCH, irc.ERR_ERRONEUSNICKNAME, irc.ERR_NICKNAMEINUSE, irc.ERR_NICKCOLLISION, irc.ERR_UNAVAILRESOURCE, irc.ERR_NOPERMFORHOST, irc.ERR_YOUREBANNEDCREEP:
|
||||||
if !uc.registered {
|
if !uc.registered {
|
||||||
return fmt.Errorf("registration failed: %v", msg.Params[len(msg.Params)-1])
|
return fmt.Errorf("registration failed: %v", msg.Params[len(msg.Params)-1])
|
||||||
|
Loading…
Reference in New Issue
Block a user