diff options
author | June McEnroe <june@causal.agency> | 2018-08-04 14:33:57 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-04 14:33:57 -0400 |
commit | 6e4f98d6eb3dee15a140647c033a87ca5e6c3064 (patch) | |
tree | d3cbd0178bea292b583d7558801799591b0ca44d | |
parent | Add libedit to chroot (diff) | |
download | catgirl-6e4f98d6eb3dee15a140647c033a87ca5e6c3064.tar.gz catgirl-6e4f98d6eb3dee15a140647c033a87ca5e6c3064.zip |
Handle /names and /who
Diffstat (limited to '')
-rw-r--r-- | input.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/input.c b/input.c index 6d875f0..12f214e 100644 --- a/input.c +++ b/input.c @@ -64,6 +64,11 @@ static void inputNick(wchar_t *params) { } } +static void inputWho(wchar_t *params) { + (void)params; + clientFmt("WHO %s\r\n", chat.chan); +} + static void inputQuit(wchar_t *params) { if (params) { clientFmt("QUIT :%ls\r\n", params); @@ -77,8 +82,10 @@ static const struct { Handler handler; } COMMANDS[] = { { L"me", inputMe }, + { L"names", inputWho }, { L"nick", inputNick }, { L"quit", inputQuit }, + { L"who", inputWho }, }; static const size_t COMMANDS_LEN = sizeof(COMMANDS) / sizeof(COMMANDS[0]); |