mirror of
https://github.com/progval/irctest.git
synced 2025-04-08 00:09:46 +00:00
Unreal: Add support for Atheme
This commit is contained in:
@ -252,7 +252,10 @@ class BaseServicesController(_BaseController):
|
||||
c.connect(self.server_controller.hostname, self.server_controller.port)
|
||||
c.sendLine("NICK chkNS")
|
||||
c.sendLine("USER chk chk chk chk")
|
||||
c.getMessages(synchronize=False)
|
||||
for msg in c.getMessages(synchronize=False):
|
||||
if msg.command == "PING":
|
||||
# Hi Unreal
|
||||
c.sendLine("PONG :" + msg.params[0])
|
||||
c.getMessages()
|
||||
|
||||
timeout = time.time() + 5
|
||||
|
Reference in New Issue
Block a user