diff options
author | Sandro Munda <sandro.munda@guardis.com> | 2012-06-07 19:04:24 +0200 |
---|---|---|
committer | Sandro Munda <sandro.munda@guardis.com> | 2012-06-07 19:04:24 +0200 |
commit | ae01f1071ab4634d40b334e956298c2004904815 (patch) | |
tree | 21110158e0db90464e536a109c32ce09c41aefc8 /sleekxmpp/plugins | |
parent | dcdf5dcd098ee8033ca9036af7e2f6ab8ddba620 (diff) | |
download | slixmpp-ae01f1071ab4634d40b334e956298c2004904815.tar.gz slixmpp-ae01f1071ab4634d40b334e956298c2004904815.tar.bz2 slixmpp-ae01f1071ab4634d40b334e956298c2004904815.tar.xz slixmpp-ae01f1071ab4634d40b334e956298c2004904815.zip |
Fixed the callback names of the xep_0065:
In-Band bytestreams -> Socks5 bytestreams
Diffstat (limited to 'sleekxmpp/plugins')
-rw-r--r-- | sleekxmpp/plugins/xep_0065/proxy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sleekxmpp/plugins/xep_0065/proxy.py b/sleekxmpp/plugins/xep_0065/proxy.py index f7b259f2..c1df23b4 100644 --- a/sleekxmpp/plugins/xep_0065/proxy.py +++ b/sleekxmpp/plugins/xep_0065/proxy.py @@ -20,7 +20,7 @@ log = logging.getLogger(__name__) class xep_0065(base_plugin): """ - XEP-0065 In-Band Bytestreams + XEP-0065 Socks5 Bytestreams """ description = "Socks5 Bytestreams" @@ -40,13 +40,13 @@ class xep_0065(base_plugin): # Handler for the streamhost stanza. self.xmpp.registerHandler( - Callback('In-Band Bytestreams', + Callback('Socks5 Bytestreams', StanzaPath('iq@type=set/q/streamhost'), self._handle_streamhost)) # Handler for the streamhost-used stanza. self.xmpp.registerHandler( - Callback('In-Band Bytestreams', + Callback('Socks5 Bytestreams', StanzaPath('iq@type=result/q/streamhost-used'), self._handle_streamhost_used)) |