comparison src/protocols/jabber/jabber.c @ 7291:632cee95cc5c

[gaim-migrate @ 7872] disable jabber SASL for the moment, until the RFCs are actually approved, since the authentication stuff is still in a state of flux committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 17 Oct 2003 20:03:44 +0000
parents 448e39ace278
children dd4b4a187171
comparison
equal deleted inserted replaced
7290:2267f71cb47b 7291:632cee95cc5c
61 { 61 {
62 char *open_stream; 62 char *open_stream;
63 63
64 open_stream = g_strdup_printf("<stream:stream to='%s' " 64 open_stream = g_strdup_printf("<stream:stream to='%s' "
65 "xmlns='jabber:client' " 65 "xmlns='jabber:client' "
66 "xmlns:stream='http://etherx.jabber.org/streams' " 66 "xmlns:stream='http://etherx.jabber.org/streams'>",
67 "version='1.0'>", js->user->domain); 67 /* "version='1.0'>" */
68 js->user->domain);
68 69
69 jabber_send_raw(js, open_stream); 70 jabber_send_raw(js, open_stream);
70 71
71 g_free(open_stream); 72 g_free(open_stream);
72 } 73 }