Update server.py
Some checks are pending
Check syntax / check (push) Waiting to run
Some checks are pending
Check syntax / check (push) Waiting to run
This commit is contained in:
parent
09c35f9561
commit
e5ebb9f904
1 changed files with 2 additions and 2 deletions
|
@ -619,8 +619,8 @@ def ssl_session(sock2):
|
||||||
sock.close()
|
sock.close()
|
||||||
print("Something went wrong...")
|
print("Something went wrong...")
|
||||||
print(traceback.format_exc())
|
print(traceback.format_exc())
|
||||||
for i in sockets:
|
for ip, i in sockets.items():
|
||||||
threading.Thread(target=tcp_session, args=[i]).start()
|
threading.Thread(target=tcp_session, args=[i]).start()
|
||||||
if ssl_option:
|
if ssl_option:
|
||||||
for i in sockets_ssl:
|
for ip, i in sockets_ssl.items():
|
||||||
threading.Thread(target=ssl_session, args=[i]).start()
|
threading.Thread(target=ssl_session, args=[i]).start()
|
Loading…
Reference in a new issue