summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
authorBrian Beggs <macdiesel@gmail.com>2010-07-09 13:36:23 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-09 15:33:21 -0400
commitc5b5cc4af1f5fd9764caea4a92efdf9d4db219d7 (patch)
tree0018bb76cf0a40c0b9959f8aa48496d9d005c283 /sleekxmpp
parente835843aab9fa17deb8fc74d9fdbdfafdc66d83c (diff)
downloadslixmpp-c5b5cc4af1f5fd9764caea4a92efdf9d4db219d7.tar.gz
slixmpp-c5b5cc4af1f5fd9764caea4a92efdf9d4db219d7.tar.bz2
slixmpp-c5b5cc4af1f5fd9764caea4a92efdf9d4db219d7.tar.xz
slixmpp-c5b5cc4af1f5fd9764caea4a92efdf9d4db219d7.zip
fix for md5 sasl authentication
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py
index 4b33a2ef..d12570c0 100644
--- a/sleekxmpp/__init__.py
+++ b/sleekxmpp/__init__.py
@@ -251,7 +251,7 @@ class ClientXMPP(basexmpp, XMLStream):
logging.debug("MD5 auth challenge: %s", challenge)
if challenge.get('rspauth'): #authenticated success... send response
- self.sendPriorityRaw("""<response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>""")
+ self.sendRaw("""<response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>""", priority=1, init=True )
return
#TODO: use realm is supplied by server, use default qop unless supplied by server