blob: c5442b5406a25119fea94d3e9a45bcb9cea10ebb (
plain) (
tree)
|
|
package main
func init() {
commandHandlers["PING"] = handleClientPing
}
func handleClientPing(msg RMsg, client *Client) bool {
if len(msg.Params) < 1 {
client.Send(MakeMsg(self, ERR_NEEDMOREPARAMS, "PING", "Not enough parameters"))
return true
}
client.Send(MakeMsg(self, "PONG", msg.Params[0]))
return true
}
|