summaryrefslogtreecommitdiff
path: root/sleekxmpp/componentxmpp.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-06 00:44:32 -0700
committerLance Stout <lancestout@gmail.com>2011-08-06 00:44:32 -0700
commite83fae3a6fed7dd143aa6fed0673ff46340ea953 (patch)
tree70908999ae511b150ff90d9b98c5d65edf686fb3 /sleekxmpp/componentxmpp.py
parent5be5b8c02bea7cef40046ec29c513e669399633a (diff)
downloadslixmpp-e83fae3a6fed7dd143aa6fed0673ff46340ea953.tar.gz
slixmpp-e83fae3a6fed7dd143aa6fed0673ff46340ea953.tar.bz2
slixmpp-e83fae3a6fed7dd143aa6fed0673ff46340ea953.tar.xz
slixmpp-e83fae3a6fed7dd143aa6fed0673ff46340ea953.zip
Save the stream ID when the stream starts.
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rw-r--r--sleekxmpp/componentxmpp.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py
index f9e7da4d..ed96016a 100644
--- a/sleekxmpp/componentxmpp.py
+++ b/sleekxmpp/componentxmpp.py
@@ -115,11 +115,13 @@ class ComponentXMPP(BaseXMPP):
Once the streams are established, attempt to handshake
with the server to be accepted as a component.
- Overrides XMLStream.start_stream_handler.
+ Overrides BaseXMPP.start_stream_handler.
Arguments:
xml -- The incoming stream's root element.
"""
+ BaseXMPP.start_stream_handler(self, xml)
+
# Construct a hash of the stream ID and the component secret.
sid = xml.get('id', '')
pre_hash = '%s%s' % (sid, self.secret)