diff options
author | Lance Stout <lancestout@gmail.com> | 2011-06-08 10:00:01 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-06-08 10:00:01 -0700 |
commit | 3a6290870363441a5664deaea9a1c902c72cb7ab (patch) | |
tree | 799df5809663aa5e89e6dcd41901757c69945d90 /sleekxmpp | |
parent | 14693233504383d4df0ed092c870d5d7baea6538 (diff) | |
download | slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.gz slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.bz2 slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.tar.xz slixmpp-3a6290870363441a5664deaea9a1c902c72cb7ab.zip |
Send component handshake immediately.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/componentxmpp.py | 2 |
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): """ |