|
@@ -416,6 +416,12 @@ func (Config *IRCConfig) ReaderRoutine() {
|
|
|
Config.PriorityWrite("AUTHENTICATE PLAIN")
|
|
|
}
|
|
|
|
|
|
+ if msg.Cmd == "CAP" && msg.Msg == "NAK" {
|
|
|
+ // SASL Authentication failed!
|
|
|
+ Config.PriorityWrite("CAP END")
|
|
|
+ Config.UseSASL = false
|
|
|
+ }
|
|
|
+
|
|
|
if (msg.MsgParts[0] == "AUTHENTICATE") && (msg.MsgParts[1] == "+") {
|
|
|
var userpass string = fmt.Sprintf("\x00%s\x00%s", Config.Nick, Config.Password)
|
|
|
var b64 string = base64.StdEncoding.EncodeToString([]byte(userpass))
|