mirror of
https://github.com/jlu5/PyLink.git
synced 2024-12-25 20:22:45 +01:00
Move numericServer to ts6_common
This commit is contained in:
parent
5027feb553
commit
eeedeb0135
@ -239,11 +239,6 @@ class TS6Protocol(TS6BaseProtocol):
|
|||||||
else:
|
else:
|
||||||
self._send(source, 'PING %s' % source)
|
self._send(source, 'PING %s' % source)
|
||||||
|
|
||||||
def numericServer(self, source, numeric, target, text):
|
|
||||||
"""Sends raw numerics from a server to a remote client, used for WHOIS
|
|
||||||
replies."""
|
|
||||||
self._send(source, '%s %s %s' % (numeric, target, text))
|
|
||||||
|
|
||||||
def awayClient(self, source, text):
|
def awayClient(self, source, text):
|
||||||
"""Sends an AWAY message from a PyLink client. <text> can be an empty string
|
"""Sends an AWAY message from a PyLink client. <text> can be an empty string
|
||||||
to unset AWAY status."""
|
to unset AWAY status."""
|
||||||
|
@ -28,6 +28,11 @@ class TS6BaseProtocol(Protocol):
|
|||||||
|
|
||||||
### OUTGOING COMMANDS
|
### OUTGOING COMMANDS
|
||||||
|
|
||||||
|
def numericServer(self, source, numeric, target, text):
|
||||||
|
"""Sends raw numerics from a server to a remote client, used for WHOIS
|
||||||
|
replies."""
|
||||||
|
self._send(source, '%s %s %s' % (numeric, target, text))
|
||||||
|
|
||||||
def _sendKick(self, numeric, channel, target, reason=None):
|
def _sendKick(self, numeric, channel, target, reason=None):
|
||||||
"""Internal function to send kicks from a PyLink client/server."""
|
"""Internal function to send kicks from a PyLink client/server."""
|
||||||
channel = utils.toLower(self.irc, channel)
|
channel = utils.toLower(self.irc, channel)
|
||||||
|
Loading…
Reference in New Issue
Block a user