mitmproxy/libmproxy/protocol2/rawtcp.py
2015-08-18 15:59:44 +02:00

22 lines
606 B
Python

from __future__ import (absolute_import, print_function, division)
import OpenSSL
from ..exceptions import ProtocolException
from ..protocol.tcp import TCPHandler
from .layer import Layer
class RawTcpLayer(Layer):
def __call__(self):
self.connect()
tcp_handler = TCPHandler(self)
try:
tcp_handler.handle_messages()
except OpenSSL.SSL.Error as e:
raise ProtocolException("SSL error: %s" % repr(e), e)
def establish_server_connection(self):
pass
# FIXME: Remove method, currently just here to mock TCPHandler's call to it.