summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/xmlstream.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-08-01 04:01:31 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-08-01 04:01:31 +0200
commitfa21e262c77ccabceedc279d2f0b3650a60a1023 (patch)
treef407fb1a809036e3bc1fcd92e8c1f8bea03130b8 /slixmpp/xmlstream/xmlstream.py
parent93934c799233eb7ae213b1f7c8490635d5b6ee83 (diff)
downloadslixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.gz
slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.bz2
slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.tar.xz
slixmpp-fa21e262c77ccabceedc279d2f0b3650a60a1023.zip
Add the 'connecting' event
Diffstat (limited to 'slixmpp/xmlstream/xmlstream.py')
-rw-r--r--slixmpp/xmlstream/xmlstream.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py
index 3bc96118..13e88428 100644
--- a/slixmpp/xmlstream/xmlstream.py
+++ b/slixmpp/xmlstream/xmlstream.py
@@ -283,6 +283,7 @@ class XMLStream(object):
if disable_starttls is not None:
self.disable_starttls = disable_starttls
+ self.event("connecting")
asyncio.async(self._connect_routine())
@asyncio.coroutine