diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 23:11:56 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 23:11:56 +1300 |
commit | e73c7fe77e9aa269e32283112e21c0e264c494ab (patch) | |
tree | 986a416fc3dc1907e3495da7fcbaf230f8d991d9 /examples/tls_passthrough.py | |
parent | e9f7cf68e90ed9269b4b51342fcd652666096b56 (diff) | |
download | mitmproxy-e73c7fe77e9aa269e32283112e21c0e264c494ab.tar.gz mitmproxy-e73c7fe77e9aa269e32283112e21c0e264c494ab.tar.bz2 mitmproxy-e73c7fe77e9aa269e32283112e21c0e264c494ab.zip |
mitmproxy.protocol -> mitmproxy.proxy.protocol
The protocols here are compltely proxy-specific, are only used from within the
proxy module, and are not exposed to users.
Diffstat (limited to 'examples/tls_passthrough.py')
-rw-r--r-- | examples/tls_passthrough.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tls_passthrough.py b/examples/tls_passthrough.py index 445ea5c3..40c1051d 100644 --- a/examples/tls_passthrough.py +++ b/examples/tls_passthrough.py @@ -28,7 +28,7 @@ from enum import Enum import mitmproxy from mitmproxy.exceptions import TlsProtocolException -from mitmproxy.protocol import TlsLayer, RawTCPLayer +from mitmproxy.proxy.protocol import TlsLayer, RawTCPLayer class InterceptionResult(Enum): |