comparison libpurple/protocols/jabber/jingle/content.c @ 24949:1a2d446cb8a0

Fix support for audio and video (at the same time) sessions.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Mon, 03 Nov 2008 03:07:07 +0000
parents bd598b606ca4
children db517c55c508
comparison
equal deleted inserted replaced
24948:78c3e991782a 24949:1a2d446cb8a0
445 g_return_val_if_fail(JINGLE_IS_CONTENT(content), NULL); 445 g_return_val_if_fail(JINGLE_IS_CONTENT(content), NULL);
446 return JINGLE_CONTENT_GET_CLASS(content)->to_xml(content, jingle, action); 446 return JINGLE_CONTENT_GET_CLASS(content)->to_xml(content, jingle, action);
447 } 447 }
448 448
449 void 449 void
450 jingle_content_handle_action(JingleContent *content, xmlnode *jingle, JingleActionType action) 450 jingle_content_handle_action(JingleContent *content, xmlnode *xmlcontent, JingleActionType action)
451 { 451 {
452 g_return_if_fail(JINGLE_IS_CONTENT(content)); 452 g_return_if_fail(JINGLE_IS_CONTENT(content));
453 JINGLE_CONTENT_GET_CLASS(content)->handle_action(content, jingle, action); 453 JINGLE_CONTENT_GET_CLASS(content)->handle_action(content, xmlcontent, action);
454 } 454 }
455 455