vendor: update libnmdc to master

This commit is contained in:
mappu 2018-06-04 19:41:33 +12:00
parent 94f8587d26
commit 8134143daa
3 changed files with 6 additions and 1 deletions

2
Gopkg.lock generated
View File

@ -5,7 +5,7 @@
branch = "master"
name = "code.ivysaur.me/libnmdc"
packages = ["."]
revision = "9eddfc6e586fd4a99bdc87d32bade0cd1a5a33e6"
revision = "74c20aaed6b2034c9dfb14e95b25aeca0b35d6fe"
[[projects]]
branch = "master"

View File

@ -14,6 +14,7 @@ const (
EVENT_HUBNAME_CHANGED HubEventType = 9
EVENT_DEBUG_MESSAGE HubEventType = 10
EVENT_USERCOMMAND HubEventType = 11
EVENT_BAD_LOGIN_FAILURE HubEventType = 12
)
type HubEvent struct {

View File

@ -94,6 +94,7 @@ func (this *NmdcProtocol) ProcessCommand(message string) {
this.hc.processEvent(HubEvent{EventType: EVENT_HUBNAME_CHANGED, Nick: commandParts[1]})
case "$ValidateDenide": // sic
this.hc.processEvent(HubEvent{EventType: EVENT_BAD_LOGIN_FAILURE})
if len(this.hc.Hco.NickPassword) > 0 {
this.hc.processEvent(HubEvent{EventType: EVENT_SYSTEM_MESSAGE_FROM_CONN, Message: "Incorrect password."})
} else {
@ -101,15 +102,18 @@ func (this *NmdcProtocol) ProcessCommand(message string) {
}
case "$HubIsFull":
this.hc.processEvent(HubEvent{EventType: EVENT_BAD_LOGIN_FAILURE})
this.hc.processEvent(HubEvent{EventType: EVENT_SYSTEM_MESSAGE_FROM_CONN, Message: "Hub is full."})
case "$BadPass":
this.hc.processEvent(HubEvent{EventType: EVENT_BAD_LOGIN_FAILURE})
this.hc.processEvent(HubEvent{EventType: EVENT_SYSTEM_MESSAGE_FROM_CONN, Message: "Incorrect password."})
case "$GetPass":
if len(this.hc.Hco.NickPassword) == 0 {
// We've got a problem. MyPass with no arguments is a syntax error with no message = instant close
// Just drop the connection
this.hc.processEvent(HubEvent{EventType: EVENT_BAD_LOGIN_FAILURE})
this.hc.processEvent(HubEvent{EventType: EVENT_SYSTEM_MESSAGE_FROM_CONN, Message: "This account is passworded."})
this.hc.Disconnect()
} else {