mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
22 lines
606 B
Python
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.
|