summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis McEnroe2018-08-04 01:37:07 -0400
committerCurtis McEnroe2018-08-04 01:37:07 -0400
commitfc5bf09c4666f8e364275e926506b1690e00e3d1 (patch)
treea3f6ba7d90fb971a247fdbcd16de71d687f0f866
parent7baaff0777813c1dafd441c504f9cc4532f7205b (diff)
Handle nick errors
-rw-r--r--chat.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/chat.c b/chat.c
index f799687..20a4290 100644
--- a/chat.c
+++ b/chat.c
@@ -260,6 +260,16 @@ static void handlePing(char *prefix, char *params) {
clientFmt("PONG %s\r\n", params);
}
+static void handle432(char *prefix, char *params) {
+ (void)prefix;
+ shift(&params);
+ shift(&params);
+ char *mesg = shift(&params);
+ uiFmt("You can't use that name here");
+ uiFmt("Sheriff says, \"%s\"", mesg);
+ uiFmt("Type /nick <name> to choose a new one");
+}
+
static void handle001(char *prefix, char *params) {
(void)prefix;
char *nick = shift(&params);
@@ -416,6 +426,8 @@ static const struct {
{ "332", handle332 },
{ "352", handle352 },
{ "366", handle366 },
+ { "432", handle432 },
+ { "433", handle432 },
{ "JOIN", handleJoin },
{ "KICK", handleKick },
{ "NICK", handleNick },