This commit is contained in:
parent
7d211f7cf7
commit
0e5d974900
1 changed files with 3 additions and 1 deletions
|
@ -172,6 +172,9 @@ for i in mods['command']:
|
||||||
commandProviders.append(i.IRCatModule(**requires))
|
commandProviders.append(i.IRCatModule(**requires))
|
||||||
sockets = {}
|
sockets = {}
|
||||||
sockets_ssl = {}
|
sockets_ssl = {}
|
||||||
|
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
|
||||||
|
context.minimum_version = ssl.TLSVersion.TLSv1
|
||||||
|
context.set_ciphers('DEFAULT:@SECLEVEL=0')
|
||||||
# Open the specified non-SSL sockets.
|
# Open the specified non-SSL sockets.
|
||||||
for i in restrict_ip.split(" "):
|
for i in restrict_ip.split(" "):
|
||||||
sockets[i] = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
sockets[i] = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
@ -763,7 +766,6 @@ def ssl_session(sock):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
while opened:
|
while opened:
|
||||||
context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
|
|
||||||
context.load_cert_chain(ssl_cert, keyfile=ssl_pkey)
|
context.load_cert_chain(ssl_cert, keyfile=ssl_pkey)
|
||||||
print("Waiting for connection...")
|
print("Waiting for connection...")
|
||||||
connection, client = sock.accept()
|
connection, client = sock.accept()
|
||||||
|
|
Loading…
Add table
Reference in a new issue