From 1662b01a5f616bd4babc08e1eb6fec1a3c7b44cf Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 29 Dec 2020 23:49:16 -0500 Subject: Add /setname command I'm not sure about that replies check in handleStandardReply. If more of those are added the reply counter system will definitely need refactoring. --- command.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'command.c') diff --git a/command.c b/command.c index 3af1246..199a561 100644 --- a/command.c +++ b/command.c @@ -159,6 +159,13 @@ static void commandAway(uint id, char *params) { replies.away++; } +static void commandSetname(uint id, char *params) { + (void)id; + if (!params) return; + ircFormat("SETNAME :%s\r\n", params); + replies.setname++; +} + static void commandTopic(uint id, char *params) { if (params) { ircFormat("TOPIC %s :%s\r\n", idNames[id], params); @@ -486,6 +493,7 @@ static const struct Handler { { "/quit", commandQuit, 0 }, { "/quote", commandQuote, Multiline | Restricted }, { "/say", commandPrivmsg, Multiline }, + { "/setname", commandSetname, 0 }, { "/topic", commandTopic, 0 }, { "/unban", commandUnban, 0 }, { "/unexcept", commandUnexcept, 0 }, -- cgit 1.4.1