diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-27 10:45:52 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-27 10:45:52 -0700 |
commit | c2189b4ecd6b022ed9900a6f411bd7e9d57c47ce (patch) | |
tree | 88b7dabe06edbbfeb45403c06628230c18301458 /sleekxmpp/plugins/xep_0199 | |
parent | c9b2cf60431f415584c1d12a7855e0d2ac148ec4 (diff) | |
parent | e3fab66dfb27abdd8aa28a8d15367a490d4b42dd (diff) | |
download | slixmpp-c2189b4ecd6b022ed9900a6f411bd7e9d57c47ce.tar.gz slixmpp-c2189b4ecd6b022ed9900a6f411bd7e9d57c47ce.tar.bz2 slixmpp-c2189b4ecd6b022ed9900a6f411bd7e9d57c47ce.tar.xz slixmpp-c2189b4ecd6b022ed9900a6f411bd7e9d57c47ce.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/plugins/xep_0199')
-rw-r--r-- | sleekxmpp/plugins/xep_0199/ping.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sleekxmpp/plugins/xep_0199/ping.py b/sleekxmpp/plugins/xep_0199/ping.py index b9d145aa..0bdeabf3 100644 --- a/sleekxmpp/plugins/xep_0199/ping.py +++ b/sleekxmpp/plugins/xep_0199/ping.py @@ -51,15 +51,16 @@ class XEP_0199(BasePlugin): description = 'XEP-0199: XMPP Ping' dependencies = set(['xep_0030']) stanza = stanza + default_config = { + 'keepalive': False, + 'frequency': 300, + 'timeout': 30 + } def plugin_init(self): """ Start the XEP-0199 plugin. """ - self.keepalive = self.config.get('keepalive', False) - self.frequency = float(self.config.get('frequency', 300)) - self.timeout = self.config.get('timeout', 30) - register_stanza_plugin(Iq, Ping) self.xmpp.register_handler( |