mirror of
https://git.clerie.de/clerie/mitel_ommclient2.git
synced 2026-01-03 12:48:12 +00:00
Default to unencrypted connection because the required old ssl protocols aren't supported anymore
This commit is contained in:
parent
f62579ce90
commit
3617494917
2 changed files with 5 additions and 1 deletions
|
|
@ -80,6 +80,10 @@ class SSLConnection(Connection):
|
|||
"""
|
||||
Establishes a secure connection to the OM Application XML Interface
|
||||
|
||||
Please not that this class might be useless on your system since new
|
||||
versions of OpenSSL don't ship with TLVv1.2 or lower anymore which are
|
||||
the protocols supported by OMM.
|
||||
|
||||
:param host: Hostname or IP address of OMM
|
||||
:param port: Port of the OM Application XML ssl TCP port
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ class Session:
|
|||
self.port = port
|
||||
self.connection_class = connection_class
|
||||
if self.connection_class is None:
|
||||
self.connection_class = connection.SSLConnection
|
||||
self.connection_class = connection.Connection
|
||||
|
||||
self._connection = None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue