mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
Fixes for XEP-0199 plugin.
Quick fixes to get the XEP-0199 plugin working until a proper cleanup is done.
This commit is contained in:
parent
5769935720
commit
1bf34caa5b
1 changed files with 3 additions and 3 deletions
|
@ -18,8 +18,8 @@ class xep_0199(base.base_plugin):
|
||||||
self.xep = "0199"
|
self.xep = "0199"
|
||||||
self.xmpp.add_handler("<iq type='get' xmlns='%s'><ping xmlns='urn:xmpp:ping'/></iq>" % self.xmpp.default_ns, self.handler_ping, name='XMPP Ping')
|
self.xmpp.add_handler("<iq type='get' xmlns='%s'><ping xmlns='urn:xmpp:ping'/></iq>" % self.xmpp.default_ns, self.handler_ping, name='XMPP Ping')
|
||||||
self.running = False
|
self.running = False
|
||||||
#if self.config.get('keepalive', True):
|
if self.config.get('keepalive', True):
|
||||||
#self.xmpp.add_event_handler('session_start', self.handler_pingserver, threaded=True)
|
self.xmpp.add_event_handler('session_start', self.handler_pingserver, threaded=True)
|
||||||
|
|
||||||
def post_init(self):
|
def post_init(self):
|
||||||
base.base_plugin.post_init(self)
|
base.base_plugin.post_init(self)
|
||||||
|
@ -35,7 +35,7 @@ class xep_0199(base.base_plugin):
|
||||||
|
|
||||||
def handler_ping(self, xml):
|
def handler_ping(self, xml):
|
||||||
iq = self.xmpp.makeIqResult(xml.get('id', 'unknown'))
|
iq = self.xmpp.makeIqResult(xml.get('id', 'unknown'))
|
||||||
iq.attrib['to'] = xml.get('from', self.xmpp.server)
|
iq.attrib['to'] = xml.get('from', self.xmpp.boundjid.domain)
|
||||||
self.xmpp.send(iq)
|
self.xmpp.send(iq)
|
||||||
|
|
||||||
def sendPing(self, jid, timeout = 30):
|
def sendPing(self, jid, timeout = 30):
|
||||||
|
|
Loading…
Reference in a new issue