comparison libpurple/protocols/jabber/disco.c @ 25742:4040da08a733

Entity Capabilities must be per-JabberStream
author Paul Aurich <paul@darkrain42.org>
date Fri, 21 Nov 2008 00:35:44 +0000
parents 1225f3dcf5ab
children 6d6e10476c52
comparison
equal deleted inserted replaced
25741:1225f3dcf5ab 25742:4040da08a733
98 xmlnode *in_query; 98 xmlnode *in_query;
99 const char *node = NULL; 99 const char *node = NULL;
100 char *node_uri = NULL; 100 char *node_uri = NULL;
101 101
102 // create custom caps node URI 102 // create custom caps node URI
103 node_uri = g_strconcat(CAPS0115_NODE, "#", jabber_caps_get_own_hash(), NULL); 103 node_uri = g_strconcat(CAPS0115_NODE, "#", jabber_caps_get_own_hash(js), NULL);
104 104
105 if((in_query = xmlnode_get_child(packet, "query"))) { 105 if((in_query = xmlnode_get_child(packet, "query"))) {
106 node = xmlnode_get_attrib(in_query, "node"); 106 node = xmlnode_get_attrib(in_query, "node");
107 } 107 }
108 108