diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-10 01:35:57 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-10 01:35:57 -0700 |
commit | a347cf625ade5b3cdea0a37ababebe754f580276 (patch) | |
tree | 88a1fe04c72dabe59488394c2242e24003e1cc70 /sleekxmpp/basexmpp.py | |
parent | 46f49c7a12c3e00bb6e6b38e5e3aba5394aea931 (diff) | |
download | slixmpp-a347cf625ade5b3cdea0a37ababebe754f580276.tar.gz slixmpp-a347cf625ade5b3cdea0a37ababebe754f580276.tar.bz2 slixmpp-a347cf625ade5b3cdea0a37ababebe754f580276.tar.xz slixmpp-a347cf625ade5b3cdea0a37ababebe754f580276.zip |
Add session_bind_event threading event.
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r-- | sleekxmpp/basexmpp.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 275275d1..da5b3e41 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -16,6 +16,7 @@ from __future__ import with_statement, unicode_literals import sys import logging +import threading import sleekxmpp from sleekxmpp import plugins, features, roster @@ -69,8 +70,11 @@ class BaseXMPP(XMLStream): #: The JabberID (JID) used by this connection. self.boundjid = JID(jid) + self._expected_server_name = self.boundjid.host + self.session_bind_event = threading.Event() + #: A dictionary mapping plugin names to plugins. self.plugin = PluginManager(self) @@ -655,6 +659,7 @@ class BaseXMPP(XMLStream): def _handle_disconnected(self, event): """When disconnected, reset the roster""" self.roster.reset() + self.session_bind_event.clear() def _handle_stream_error(self, error): self.event('stream_error', error) |