|
@ -27,7 +27,7 @@ Transports are stackable so you - f.e. TLS use HTPPROXYsocket or TCPsocket as mo |
|
|
Also exception 'error' is defined to allow capture of this module specific exceptions. |
|
|
Also exception 'error' is defined to allow capture of this module specific exceptions. |
|
|
""" |
|
|
""" |
|
|
|
|
|
|
|
|
import socket, select, base64, dispatcher, sys |
|
|
import socket, ssl, select, base64, dispatcher, sys |
|
|
from simplexml import ustr |
|
|
from simplexml import ustr |
|
|
from client import PlugIn |
|
|
from client import PlugIn |
|
|
from protocol import * |
|
|
from protocol import * |
|
@ -312,9 +312,9 @@ class TLS(PlugIn): |
|
|
""" Immidiatedly switch socket to TLS mode. Used internally.""" |
|
|
""" Immidiatedly switch socket to TLS mode. Used internally.""" |
|
|
""" Here we should switch pending_data to hint mode.""" |
|
|
""" Here we should switch pending_data to hint mode.""" |
|
|
tcpsock = self._owner.Connection |
|
|
tcpsock = self._owner.Connection |
|
|
tcpsock._sslObj = socket.ssl(tcpsock._sock, None, None) |
|
|
tcpsock._sslObj = ssl.wrap_socket(tcpsock._sock, None, None) |
|
|
tcpsock._sslIssuer = tcpsock._sslObj.issuer() |
|
|
tcpsock._sslIssuer = tcpsock._sslObj.getpeercert().get('issuer') |
|
|
tcpsock._sslServer = tcpsock._sslObj.server() |
|
|
tcpsock._sslServer = tcpsock._sslObj.getpeercert().get('server') |
|
|
tcpsock._recv = tcpsock._sslObj.read |
|
|
tcpsock._recv = tcpsock._sslObj.read |
|
|
tcpsock._send = tcpsock._sslObj.write |
|
|
tcpsock._send = tcpsock._sslObj.write |
|
|
|
|
|
|
|
|