aboutsummaryrefslogtreecommitdiff
path: root/cmd_user.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd_user.go')
-rw-r--r--cmd_user.go10
1 files changed, 7 insertions, 3 deletions
diff --git a/cmd_user.go b/cmd_user.go
index 99d9027..3db56c7 100644
--- a/cmd_user.go
+++ b/cmd_user.go
@@ -13,10 +13,14 @@ func handleClientUser(msg RMsg, client *Client) bool {
client.Send(MakeMsg(self, ERR_NEEDMOREPARAMS, "USER", "Not enough parameters"))
return true
}
- client.Ident = "~" + msg.Params[0]
- client.Gecos = msg.Params[3]
- if client.State == ClientStatePreRegistration {
+ switch (client.State) {
+ case ClientStatePreRegistration:
+ client.Ident = "~" + msg.Params[0]
+ client.Gecos = msg.Params[3]
client.checkRegistration()
+ case ClientStateRegistered:
+ client.Send(MakeMsg(self, ERR_ALREADYREGISTERED, client.Nick, "You may not reregister"))
+ case ClientStateRemote:
}
return true
}