summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/sasl_anonymous.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-07-02 21:57:50 -0700
committerLance Stout <lancestout@gmail.com>2011-07-02 21:57:50 -0700
commitfba235a801a3a1c06d1769cdc944b72dce33f88a (patch)
tree905c3243cee4991b0fc81332809f34042a2031c6 /sleekxmpp/features/sasl_anonymous.py
parentb0297af38d6dcd9ebfdaa0131ea798c9fe2b8c63 (diff)
downloadslixmpp-fba235a801a3a1c06d1769cdc944b72dce33f88a.tar.gz
slixmpp-fba235a801a3a1c06d1769cdc944b72dce33f88a.tar.bz2
slixmpp-fba235a801a3a1c06d1769cdc944b72dce33f88a.tar.xz
slixmpp-fba235a801a3a1c06d1769cdc944b72dce33f88a.zip
Simplify SASL mech registration.
Moved SASL registration completely to the feature plugin, instead of keeping a portion of it in ClientXMPP.
Diffstat (limited to 'sleekxmpp/features/sasl_anonymous.py')
-rw-r--r--sleekxmpp/features/sasl_anonymous.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sleekxmpp/features/sasl_anonymous.py b/sleekxmpp/features/sasl_anonymous.py
index 71a4b2e5..98a0d36e 100644
--- a/sleekxmpp/features/sasl_anonymous.py
+++ b/sleekxmpp/features/sasl_anonymous.py
@@ -14,8 +14,9 @@ class sasl_anonymous(base_plugin):
self.name = 'SASL ANONYMOUS'
self.rfc = '6120'
self.description = 'SASL ANONYMOUS Mechanism'
+ self.stanza = self.xmpp['feature_mechanisms'].stanza
- self.xmpp.register_sasl_mechanism('ANONYMOUS',
+ self.xmpp['feature_mechanisms'].register('ANONYMOUS',
self._handle_anonymous,
priority=self.config.get('priority', 0))
@@ -23,7 +24,7 @@ class sasl_anonymous(base_plugin):
if self.xmpp.boundjid.user:
return False
- resp = self.xmpp['feature_sasl'].stanza.Auth(self.xmpp)
+ resp = self.stanza.Auth(self.xmpp)
resp['mechanism'] = 'ANONYMOUS'
resp.send(now=True)