From 1331f317fba7c877c196b67eca6434d763b35d02 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Tue, 13 May 2014 23:57:45 +0400 Subject: [PATCH] More RFC-close reply human-readable messages --- daemon.go | 8 ++++---- room.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/daemon.go b/daemon.go index 5eb1a87..487e587 100644 --- a/daemon.go +++ b/daemon.go @@ -63,7 +63,7 @@ func (daemon *Daemon) SendLusers(client *Client) { lusers++ } } - client.ReplyNicknamed("251", fmt.Sprintf("There are %d users and 0 services on 1 server", lusers)) + client.ReplyNicknamed("251", fmt.Sprintf("There are %d users and 0 invisible on 1 servers", lusers)) } func (daemon *Daemon) SendMotd(client *Client) { @@ -113,7 +113,7 @@ func (daemon *Daemon) SendWhois(client *Client, nicknames []string) { } sort.Strings(subscriptions) client.ReplyNicknamed("319", c.nickname, strings.Join(subscriptions, " ")) - client.ReplyNicknamed("318", c.nickname, "End of WHOIS list") + client.ReplyNicknamed("318", c.nickname, "End of /WHOIS list") } if !found { client.ReplyNoNickChan(nickname) @@ -138,7 +138,7 @@ func (daemon *Daemon) SendList(client *Client, cols []string) { client.ReplyNicknamed("322", room, fmt.Sprintf("%d", len(r.members)), r.topic) } } - client.ReplyNicknamed("323", "End of LIST") + client.ReplyNicknamed("323", "End of /LIST") } // Unregistered client workflow processor. Unregistered client: @@ -362,7 +362,7 @@ func (daemon *Daemon) Processor(events chan ClientEvent) { continue case "NOTICE", "PRIVMSG": if len(cols) == 1 { - client.ReplyNicknamed("411", "No recipient given") + client.ReplyNicknamed("411", "No recipient given ("+command+")") continue } cols = strings.SplitN(cols[1], " ", 2) diff --git a/room.go b/room.go index f58d708..9e19002 100644 --- a/room.go +++ b/room.go @@ -121,7 +121,7 @@ func (room *Room) Processor(events chan ClientEvent) { for m := range room.members { client.ReplyNicknamed("352", room.name, m.username, m.conn.RemoteAddr().String(), room.hostname, m.nickname, "H", "0 "+m.realname) } - client.ReplyNicknamed("315", room.name, "End of WHO list") + client.ReplyNicknamed("315", room.name, "End of /WHO list") case EVENT_MODE: if event.text == "" { mode := "+" -- 2.44.0