Update server.py
This commit is contained in:
parent
c60ce953dd
commit
531d08fc14
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ print("Now listening on port 6667")
|
||||||
def pinger(nick, connection):
|
def pinger(nick, connection):
|
||||||
while nick in property_list:
|
while nick in property_list:
|
||||||
global property_list
|
global property_list
|
||||||
print(property_list[nick]["ping_pending"] = True)
|
print(property_list[nick]["ping_pending"] == True)
|
||||||
if (time.time() - property_list[nick]["last_ping"]) > 60 and not property_list[nick]["ping_pending"]:
|
if (time.time() - property_list[nick]["last_ping"]) > 60 and not property_list[nick]["ping_pending"]:
|
||||||
print("Sent ping message to " + nick)
|
print("Sent ping message to " + nick)
|
||||||
connection.sendall(bytes(f"PING {server}\r\n","UTF-8"))
|
connection.sendall(bytes(f"PING {server}\r\n","UTF-8"))
|
||||||
|
|
Loading…
Reference in a new issue