summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-04 14:33:57 -0400
committerJune McEnroe <june@causal.agency>2018-08-04 14:33:57 -0400
commit6e4f98d6eb3dee15a140647c033a87ca5e6c3064 (patch)
treed3cbd0178bea292b583d7558801799591b0ca44d
parentAdd libedit to chroot (diff)
downloadcatgirl-6e4f98d6eb3dee15a140647c033a87ca5e6c3064.tar.gz
catgirl-6e4f98d6eb3dee15a140647c033a87ca5e6c3064.zip
Handle /names and /who
-rw-r--r--input.c7
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]);
 
itle='2020-02-11 18:23:04 -0500'>2020-02-11Rename query ID on nick changeJune McEnroe 2020-02-11Call completeClear when closing a windowJune McEnroe 2020-02-11Don't insert color codes for non-mentionsJune McEnroe 2020-02-11Take first two words in colorMentionsJune McEnroe 2020-02-11Use time_t for save signatureJune McEnroe 2020-02-11Set self.nick to * initiallyJune McEnroe 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe 2020-02-11Cast towupper to wchar_tJune McEnroe 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe