comparison 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
comparison
equal deleted inserted replaced
8113:d60272410bd5 8114:7a6e30eb7aad
202 g_free(buf); 202 g_free(buf);
203 203
204 return 0; 204 return 0;
205 } 205 }
206 206
207 int irc_cmd_list(struct irc_conn *irc, const char *cmd, const char *target, const char **args)
208 {
209 char *buf;
210
211 buf = irc_format(irc, "v", "LIST");
212 irc_send(irc, buf);
213 g_free(buf);
214
215 return 0;
216 }
217
207 int irc_cmd_mode(struct irc_conn *irc, const char *cmd, const char *target, const char **args) 218 int irc_cmd_mode(struct irc_conn *irc, const char *cmd, const char *target, const char **args)
208 { 219 {
209 GaimConnection *gc; 220 GaimConnection *gc;
210 char *buf; 221 char *buf;
211 222