mirror of
https://github.com/jlu5/PyLink.git
synced 2024-12-24 11:42:51 +01:00
hybrid: Handle PONG
This commit is contained in:
parent
7ec4962412
commit
24589b21c1
@ -333,6 +333,11 @@ class HybridProtocol(TS6BaseProtocol):
|
||||
if utils.isInternalServer(self.irc, destination):
|
||||
self._send(destination, 'PONG %s :%s' % (self.irc.servers[destination].name, source))
|
||||
|
||||
def handle_pong(self, source, command, args):
|
||||
"""Handles incoming PONG commands."""
|
||||
if source == self.irc.uplink and args[1] == self.irc.sid:
|
||||
self.irc.lastping = time.time()
|
||||
|
||||
# empty handlers
|
||||
# TODO: there's a better way to do this
|
||||
def handle_svinfo(self, numeric, command, args):
|
||||
|
Loading…
Reference in New Issue
Block a user