summaryrefslogtreecommitdiff
path: root/examples/thirdparty_auth.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2014-08-16 22:37:29 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-09-01 02:47:08 +0200
commit6175cbcd99f917b08646d130770a132458056249 (patch)
tree7aa51df981039fdfec06c141feb5b61888a4e8f9 /examples/thirdparty_auth.py
parent476d76a53301f9da2ac7efa094e209b0607adfdc (diff)
downloadslixmpp-6175cbcd99f917b08646d130770a132458056249.tar.gz
slixmpp-6175cbcd99f917b08646d130770a132458056249.tar.bz2
slixmpp-6175cbcd99f917b08646d130770a132458056249.tar.xz
slixmpp-6175cbcd99f917b08646d130770a132458056249.zip
Reintroduce XMLStream.process, making it run the asyncio event loop.
Diffstat (limited to 'examples/thirdparty_auth.py')
-rwxr-xr-xexamples/thirdparty_auth.py14
1 files changed, 2 insertions, 12 deletions
diff --git a/examples/thirdparty_auth.py b/examples/thirdparty_auth.py
index fbe49f8b..504048a9 100755
--- a/examples/thirdparty_auth.py
+++ b/examples/thirdparty_auth.py
@@ -223,15 +223,5 @@ if __name__ == '__main__':
# Connect to the XMPP server and start processing XMPP stanzas.
# Google only allows one SASL attempt per connection, so in order to
# enable the X-GOOGLE-TOKEN mechanism, we'll disable TLS.
- if xmpp.connect(use_tls=False):
- # If you do not have the dnspython library installed, you will need
- # to manually specify the name of the server if it does not match
- # the one in the JID. For example, to use Google Talk you would
- # need to use:
- #
- # if xmpp.connect(('talk.google.com', 5222)):
- # ...
- xmpp.process(block=True)
- print("Done")
- else:
- print("Unable to connect.")
+ xmpp.connect()
+ xmpp.process()