comparison libpurple/protocols/jabber/auth_plain.c @ 29097:cea22db36ffc

jabber: Use NS_XMPP_SASL
author Paul Aurich <paul@darkrain42.org>
date Fri, 27 Nov 2009 20:41:22 +0000
parents 8ada06fb65ed
children 4f45aae3ace1
comparison
equal deleted inserted replaced
29096:d9c70a78fad5 29097:cea22db36ffc
36 xmlnode *auth; 36 xmlnode *auth;
37 GString *response; 37 GString *response;
38 gchar *enc_out; 38 gchar *enc_out;
39 39
40 auth = xmlnode_new("auth"); 40 auth = xmlnode_new("auth");
41 xmlnode_set_namespace(auth, "urn:ietf:params:xml:ns:xmpp-sasl"); 41 xmlnode_set_namespace(auth, NS_XMPP_SASL);
42 42
43 xmlnode_set_attrib(auth, "xmlns:ga", "http://www.google.com/talk/protocol/auth"); 43 xmlnode_set_attrib(auth, "xmlns:ga", "http://www.google.com/talk/protocol/auth");
44 xmlnode_set_attrib(auth, "ga:client-uses-full-bind-result", "true"); 44 xmlnode_set_attrib(auth, "ga:client-uses-full-bind-result", "true");
45 45
46 response = g_string_new(""); 46 response = g_string_new("");