Add /nick

master
C. McEnroe 2020-02-08 00:02:10 -05:00
parent 58e1d5b4e2
commit 55173ef297
2 changed files with 9 additions and 0 deletions

View File

@ -130,6 +130,8 @@ can be typed
Join a channel.
.It Ic /me Op Ar action
Send an action message.
.It Ic /nick Ar nick
Change nicknames.
.It Ic /notice Ar message
Send a notice.
.It Ic /quit Op Ar message

View File

@ -69,6 +69,12 @@ static void commandQuit(size_t id, char *params) {
set(&self.quit, (params ? params : "Goodbye"));
}
static void commandNick(size_t id, char *params) {
(void)id;
if (!params) return;
ircFormat("NICK :%s\r\n", params);
}
static void commandWindow(size_t id, char *params) {
if (!params) return;
if (isdigit(params[0])) {
@ -85,6 +91,7 @@ static const struct Handler {
} Commands[] = {
{ "/join", commandJoin },
{ "/me", commandMe },
{ "/nick", commandNick },
{ "/notice", commandNotice },
{ "/quit", commandQuit },
{ "/quote", commandQuote },