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

This commit is contained in:
Nova Cat 2025-01-25 21:25:36 -08:00
parent eceb5804a5
commit 8341deeb20

View file

@ -29,7 +29,7 @@ def isalphanumeric(text:str):
def getident(hostt:str, clientport:int, ssll:bool):
try:
identsender = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
identsender.timeout = 5
identsender.settimeout(5)
try:
identsender.connect((hostt, 113))
except: