src/protocols/irc/cmds.c

changeset 8114
201c03cf6c5f
parent 7118
280b3b85a28a
child 8352
cf7ca701b213
equal deleted inserted replaced
8113:6a2ffc66c022 8114:201c03cf6c5f
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

mercurial