diff libpurple/protocols/jabber/iq.c @ 23759:315151da0dc6

Basic Google Talk voice call support. No UI; receiving a call auto-accepts it.
author Sean Egan <seanegan@gmail.com>
date Wed, 05 Sep 2007 00:47:58 +0000
parents c58b83d2b188
children 60f5abc6cf0c
line wrap: on
line diff
--- a/libpurple/protocols/jabber/iq.c	Tue Aug 28 01:02:01 2007 +0000
+++ b/libpurple/protocols/jabber/iq.c	Wed Sep 05 00:47:58 2007 +0000
@@ -333,6 +333,11 @@
 			return;
 		}
 	}
+	
+	if (xmlnode_get_child_with_namespace(packet, "session", "http://www.google.com/session")) {
+		jabber_google_session_parse(js, packet);
+		return;
+	}
 
 	if(xmlnode_get_child_with_namespace(packet, "si", "http://jabber.org/protocol/si")) {
 		jabber_si_parse(js, packet);