jingle.c
changeset 5 2155c65c7455
parent 3 46a9e1c8181f
child 6 a035ec60dc7f
--- a/jingle.c	Tue May 25 15:58:50 2010 +0200
+++ b/jingle.c	Tue May 25 16:44:52 2010 +0200
@@ -36,10 +36,6 @@
 static void mcjingle_uninit(void);
 
 
-struct info_iq {
-	const gchar *from, *to, *type, *id;
-};
-
 LmMessageHandler* jingle_iq_handler = NULL;
 
 
@@ -56,19 +52,6 @@
 };
 
 
-void parse_iq(LmMessageNode *iq, struct info_iq *ii)
-{
-	if (!strcmp(iq->name, "iq")) {
-		ii->to = ii->from = ii->type = ii->id = NULL;
-		return;
-	}
-
-	ii->from = lm_message_node_get_attribute(iq, "from");
-	ii->to   = lm_message_node_get_attribute(iq, "to");
-	ii->type = lm_message_node_get_attribute(iq, "type");
-	ii->id   = lm_message_node_get_attribute(iq, "id");
-}
-
 LmHandlerResult jingle_iq_event_handler(LmMessageHandler *handler,
 		LmConnection *connection,
 		LmMessage *message,