Update server.py
All checks were successful
/ check (push) Successful in 24s

This commit is contained in:
Nova Cat 2025-01-25 22:23:10 -08:00
parent d29688421c
commit 74cb4168de

View file

@ -37,7 +37,7 @@ def getident(hostt:str, clientport:int, ssll:bool):
serverport = "6697" if ssll else "6667"
try:
identsender.sendall(bytes(f"{clientport} , {serverport}\r\n", "UTF-8"))
responsee = identserver.recv(2048).decode()
responsee = identsender.recv(2048).decode()
print(responsee)
except Exception as ex:
return {"success": False, "response": f"Could not send packets to your server: {ex}"}