Registered stanza plugin in the stanza module

This commit is contained in:
Sandro Munda 2012-06-04 08:03:08 +02:00
parent 69cffce7dc
commit cf24b870b1
3 changed files with 8 additions and 16 deletions

View file

@ -1,6 +1,3 @@
"""
"""
from sleekxmpp.plugins.base import register_plugin
from sleekxmpp.plugins.xep_0065.proxy import xep_0065

View file

@ -8,23 +8,15 @@ from select import select
from uuid import uuid4
from sleekxmpp.plugins.base import base_plugin
from sleekxmpp import Iq
from sleekxmpp.xmlstream import register_stanza_plugin
from sleekxmpp.xmlstream.handler import Callback
from sleekxmpp.xmlstream.matcher import StanzaPath
from socks import socksocket, PROXY_TYPE_SOCKS5
from stanza import Query, StreamHost, StreamHostUsed
import stanza
# Register the sleekxmpp logger
# Registers the sleekxmpp logger
log = logging.getLogger(__name__)
# Register xep_0065 stanzas
register_stanza_plugin(Iq, Query)
register_stanza_plugin(Query, StreamHost)
register_stanza_plugin(Query, StreamHostUsed)
class xep_0065(base_plugin):
"""

View file

@ -1,4 +1,6 @@
from sleekxmpp.xmlstream import ElementBase
from sleekxmpp import Iq
from sleekxmpp.xmlstream import ElementBase, register_stanza_plugin
# The protocol namespace defined in the Socks5Bytestream (0065) spec.
namespace = 'http://jabber.org/protocol/bytestreams'
@ -34,5 +36,6 @@ class Query(ElementBase):
interfaces = set(('sid', 'activate'))
sub_interfaces = set(('activate',))
register_stanza_plugin(Iq, Query)
register_stanza_plugin(Query, StreamHost)
register_stanza_plugin(Query, StreamHostUsed)