Update server.py
Some checks are pending
Check syntax / check (push) Waiting to run

This commit is contained in:
Nova Cat 2025-01-02 19:52:51 -08:00
parent 09c35f9561
commit e5ebb9f904

View file

@ -619,8 +619,8 @@ def ssl_session(sock2):
sock.close()
print("Something went wrong...")
print(traceback.format_exc())
for i in sockets:
for ip, i in sockets.items():
threading.Thread(target=tcp_session, args=[i]).start()
if ssl_option:
for i in sockets_ssl:
for ip, i in sockets_ssl.items():
threading.Thread(target=ssl_session, args=[i]).start()