diff options
author | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-01-22 16:38:16 +0530 |
---|---|---|
committer | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-01-22 16:38:16 +0530 |
commit | 8afba7de853be4eb3c5cb2467fa17db64cf84abc (patch) | |
tree | b01bb0552b79686c5d1af40a91e3dafbd7ef3d43 | |
parent | 1ce42d3a2fe62f82030268923d307cb35896d4d4 (diff) | |
download | slixmpp-8afba7de853be4eb3c5cb2467fa17db64cf84abc.tar.gz slixmpp-8afba7de853be4eb3c5cb2467fa17db64cf84abc.tar.bz2 slixmpp-8afba7de853be4eb3c5cb2467fa17db64cf84abc.tar.xz slixmpp-8afba7de853be4eb3c5cb2467fa17db64cf84abc.zip |
renamed example for convenience.
-rw-r--r-- | examples/http_over_xmpp.py (renamed from examples/http_over_xmpp_transport.py) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/http_over_xmpp_transport.py b/examples/http_over_xmpp.py index 7a60c6fc..5de8713e 100644 --- a/examples/http_over_xmpp_transport.py +++ b/examples/http_over_xmpp.py @@ -29,6 +29,7 @@ class HTTPOverXMPPClient(ClientXMPP): def __init__(self, jid, password): ClientXMPP.__init__(self, jid, password) + self.register_plugin('xep_0332') # HTTP over XMPP # self.register_plugin('xep_0030') # Service Discovery # self.register_plugin('xep_0004') # Data Forms # self.register_plugin('xep_0060') # PubSub |