comparison src/server.c @ 13293:44a8d46ee3c1

[gaim-migrate @ 15659] Nobody minds if I revert all that mediastreamer stuff, do they? committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Thu, 16 Feb 2006 00:45:23 +0000
parents 880844bef520
children dc05405864bd
comparison
equal deleted inserted replaced
13292:94255f5568d8 13293:44a8d46ee3c1
823 if (!prpl_info->can_receive_file || prpl_info->can_receive_file(gc, who)) { 823 if (!prpl_info->can_receive_file || prpl_info->can_receive_file(gc, who)) {
824 prpl_info->send_file(gc, who, file); 824 prpl_info->send_file(gc, who, file);
825 } 825 }
826 } 826 }
827 } 827 }
828
829 void serv_voice_chat(GaimConnection *gc, const char *who)
830 {
831 GaimPluginProtocolInfo *prpl_info = NULL;
832
833 if (gc != NULL && gc->prpl != NULL)
834 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
835
836 if (prpl_info && prpl_info->media_prpl_ops && prpl_info->media_prpl_ops->call)
837 prpl_info->media_prpl_ops->call(gc, who);
838 }