libpurple/protocols/irc/msgs.c

branch
release-2.x.y
changeset 41335
c49dcf00bee6
parent 41333
ed2b25ccdf2c
child 41339
3230f4408394
equal deleted inserted replaced
41334:b6896c389190 41335:c49dcf00bee6
1254 void irc_msg_ping(struct irc_conn *irc, const char *name, const char *from, char **args) 1254 void irc_msg_ping(struct irc_conn *irc, const char *name, const char *from, char **args)
1255 { 1255 {
1256 char *buf; 1256 char *buf;
1257 1257
1258 buf = irc_format(irc, "v:", "PONG", args[0]); 1258 buf = irc_format(irc, "v:", "PONG", args[0]);
1259 irc_send(irc, buf); 1259 irc_priority_send(irc, buf);
1260 g_free(buf); 1260 g_free(buf);
1261 } 1261 }
1262 1262
1263 void irc_msg_pong(struct irc_conn *irc, const char *name, const char *from, char **args) 1263 void irc_msg_pong(struct irc_conn *irc, const char *name, const char *from, char **args)
1264 { 1264 {

mercurial