XEP-0279: wrap check_ip() with coroutine_wrapper

This commit is contained in:
mathieui 2015-02-23 19:49:33 +01:00
parent e034b31d6b
commit e112e86475
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -10,6 +10,7 @@
import logging
from slixmpp import Iq
from slixmpp import coroutine_wrapper
from slixmpp.plugins import BasePlugin
from slixmpp.xmlstream import register_stanza_plugin
from slixmpp.plugins.xep_0279 import stanza, IPCheck
@ -31,9 +32,10 @@ class XEP_0279(BasePlugin):
def plugin_end(self):
self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:sic:0')
def check_ip(self, ifrom=None, block=True, timeout=None, callback=None):
@coroutine_wrapper
def check_ip(self, ifrom=None, timeout=None, callback=None, coroutine=False):
iq = self.xmpp.Iq()
iq['type'] = 'get'
iq['from'] = ifrom
iq.enable('ip_check')
return iq.send(block=block, timeout=timeout, callback=callback)
return iq.send(timeout=timeout, callback=callback, coroutine=coroutine)