diff options
author | June McEnroe <june@causal.agency> | 2020-02-14 21:43:27 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-14 21:43:27 -0500 |
commit | ed52ade7393fafe8e76dad7772c2ebfaf3647119 (patch) | |
tree | 3df85b4caa56a8821a9814535145e0b6d58b6a6d /command.c | |
parent | Add /invite (diff) | |
download | catgirl-ed52ade7393fafe8e76dad7772c2ebfaf3647119.tar.gz catgirl-ed52ade7393fafe8e76dad7772c2ebfaf3647119.zip |
Add /kick
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/command.c b/command.c index f59176f..3b94270 100644 --- a/command.c +++ b/command.c @@ -141,6 +141,16 @@ static void commandInvite(size_t id, char *params) { ircFormat("INVITE %s %s\r\n", nick, idNames[id]); } +static void commandKick(size_t id, char *params) { + if (!params) return; + char *nick = strsep(¶ms, " "); + if (params) { + ircFormat("KICK %s %s :%s\r\n", idNames[id], nick, params); + } else { + ircFormat("KICK %s %s\r\n", idNames[id], nick); + } +} + static void commandList(size_t id, char *params) { (void)id; if (params) { @@ -259,6 +269,7 @@ static const struct Handler { { "/help", .fn = commandHelp }, { "/invite", .fn = commandInvite }, { "/join", .fn = commandJoin, .restricted = true }, + { "/kick", .fn = commandKick }, { "/list", .fn = commandList }, { "/me", .fn = commandMe }, { "/move", .fn = commandMove }, |