aboutsummaryrefslogtreecommitdiffstats
path: root/main/halberd/halberd-sslwrap.patch
blob: fc172e0349be0ed33420308b6316bcfee6469d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--- Halberd/clientlib.py.orig
+++ Halberd/clientlib.py
@@ -31,6 +31,7 @@
 
 import time
 import socket
+import ssl
 import urlparse
 
 from itertools import takewhile
@@ -310,7 +311,7 @@
 
         self._recv = None
         self._sslsock = None
-        self._timeout_exceptions.append(socket.sslerror)
+        self._timeout_exceptions.append(ssl.SSLError)
 
         # Path to an SSL key file and certificate.
         self.keyfile = None
@@ -327,8 +328,8 @@
         """
         HTTPClient._connect(self, addr)
         try:
-            self._sslsock = socket.ssl(self._sock, self.keyfile, self.certfile)
-        except socket.sslerror, msg:
+            self._sslsock = ssl.wrap_socket(self._sock, self.keyfile, self.certfile)
+        except ssl.SSLError, msg:
             raise HTTPSError, msg
 
         self._recv = self._sslsock.read