summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-06-08 10:00:01 -0700
committerLance Stout <lancestout@gmail.com>2011-06-08 10:00:01 -0700
commit3a6290870363441a5664deaea9a1c902c72cb7ab (patch)
tree799df5809663aa5e89e6dcd41901757c69945d90
parent14693233504383d4df0ed092c870d5d7baea6538 (diff)
downloadslixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.gz
slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.bz2
slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.xz
slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.zip
Send component handshake immediately.
-rw-r--r--sleekxmpp/componentxmpp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py
index 8c380ddc..f9e7da4d 100644
--- a/sleekxmpp/componentxmpp.py
+++ b/sleekxmpp/componentxmpp.py
@@ -129,7 +129,7 @@ class ComponentXMPP(BaseXMPP):
handshake = ET.Element('{jabber:component:accept}handshake')
handshake.text = hashlib.sha1(pre_hash).hexdigest().lower()
- self.send_xml(handshake)
+ self.send_xml(handshake, now=True)
def _handle_handshake(self, xml):
"""