Update server.py
This commit is contained in:
parent
1369475afe
commit
9b4c0eb5a6
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ for i in restrict_ip.split(" "):
|
|||
sockets[i].setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
sockets[i].bind((i,6667))
|
||||
sockets[i].listen(1)
|
||||
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
|
||||
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER, ssl.PROTOCOL_TLSv1_1)
|
||||
if ssl_option:
|
||||
print(f"Loading SSL cert {ssl_cert} with key {ssl_pkey}")
|
||||
context.load_cert_chain(ssl_cert, keyfile=ssl_pkey)
|
||||
|
|
Loading…
Add table
Reference in a new issue