diff options
author | Lance Stout <lancestout@gmail.com> | 2012-08-17 10:18:11 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-08-17 10:18:11 -0700 |
commit | ff28b0a005410a2604b7b889e0347ae9d6a7efd9 (patch) | |
tree | 7f4299c56175ad17abad6f1ac360f565e9cf3712 /sleekxmpp/basexmpp.py | |
parent | a249f8736ac601dff8e5c06d850016383cc28d82 (diff) | |
parent | 8a03bd72ae5d07ebee2bcd13e66441a94edd4f1a (diff) | |
download | slixmpp-ff28b0a005410a2604b7b889e0347ae9d6a7efd9.tar.gz slixmpp-ff28b0a005410a2604b7b889e0347ae9d6a7efd9.tar.bz2 slixmpp-ff28b0a005410a2604b7b889e0347ae9d6a7efd9.tar.xz slixmpp-ff28b0a005410a2604b7b889e0347ae9d6a7efd9.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r-- | sleekxmpp/basexmpp.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 9e5b9bbf..282c0c31 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -68,7 +68,12 @@ class BaseXMPP(XMLStream): #: An identifier for the stream as given by the server. self.stream_id = None - #: The JabberID (JID) used by this connection. + #: The JabberID (JID) requested for this connection. + self.requested_jid = JID(jid) + + #: The JabberID (JID) used by this connection, + #: as set after session binding. This may even be a + #: different bare JID than what was requested. self.boundjid = JID(jid) self._expected_server_name = self.boundjid.host |