Commit e2a4ff9c authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Changed ssl to negotiate with device

parent f83f064b
Loading
Loading
Loading
Loading
Compare f74698fb to c534be06
Original line number Diff line number Diff line
Subproject commit f74698fba2df685cbfa9b6b9de54f1d2398f8615
Subproject commit c534be060a4b74520ecdba384450d8a7d1e0f357
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ class BaseClient(object):
        # Stage socket on a local variable first
        s = self.build_socket(family)
        if self.use_ssl:
            s = ssl.wrap_socket(s, ssl_version=ssl.PROTOCOL_TLSv1)
            s = ssl.wrap_socket(s)

        s.settimeout(self.connect_timeout)
        if self.socket_address: