You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think it does out of the box, but it should be relatively easy if you use the python ssl module. You'll probably have to do something like the following in controller._socket_ready_handle after self.listen_socket.accept().
if self.keyfile and self.certfile:
try:
sock = ssl.wrap_socket(sock, server_side=True,
keyfile=self.keyfile,
certfile=self.certfile)
except ssl.SSLError as err:
self.logger.info(err)
No description provided.
The text was updated successfully, but these errors were encountered: