comparison src/server.c @ 9466:d27156c9c876

[gaim-migrate @ 10291] (21:36:44) datallah: anyway... i added "Send File" to the prpl core committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 07 Jul 2004 01:49:39 +0000
parents 28280c108cc4
children 2c7dcb5851f4
comparison
equal deleted inserted replaced
9465:8a4797a608ae 9466:d27156c9c876
1586 1586
1587 g_free(angel); 1587 g_free(angel);
1588 g_free(buf); 1588 g_free(buf);
1589 g_free(buffy); 1589 g_free(buffy);
1590 } 1590 }
1591
1592 void serv_send_file(GaimConnection *gc, const char *who, const char *file)
1593 {
1594 GaimPluginProtocolInfo *prpl_info = NULL;
1595
1596 if (gc != NULL && gc->prpl != NULL)
1597 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
1598
1599 if (prpl_info && prpl_info->send_file)
1600 prpl_info->send_file(gc, who, file);
1601 }