Mercurial > pidgin
diff src/protocols/irc/cmds.c @ 8114:7a6e30eb7aad
[gaim-migrate @ 8818]
Thanks to Tim Ringenbach for this IRC chat list.
committer: Tailor Script <tailor@pidgin.im>
| author | Ethan Blanton <elb@pidgin.im> |
|---|---|
| date | Thu, 15 Jan 2004 22:53:07 +0000 |
| parents | bf630f7dfdcd |
| children | 77baefe979c6 |
line wrap: on
line diff
--- a/src/protocols/irc/cmds.c Thu Jan 15 22:20:29 2004 +0000 +++ b/src/protocols/irc/cmds.c Thu Jan 15 22:53:07 2004 +0000 @@ -204,6 +204,17 @@ return 0; } +int irc_cmd_list(struct irc_conn *irc, const char *cmd, const char *target, const char **args) +{ + char *buf; + + buf = irc_format(irc, "v", "LIST"); + irc_send(irc, buf); + g_free(buf); + + return 0; +} + int irc_cmd_mode(struct irc_conn *irc, const char *cmd, const char *target, const char **args) { GaimConnection *gc;
