diff options
Diffstat (limited to 'mitmproxy/examples/tls_passthrough.py')
-rw-r--r-- | mitmproxy/examples/tls_passthrough.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mitmproxy/examples/tls_passthrough.py b/mitmproxy/examples/tls_passthrough.py index 0d41b725..8c8fa4eb 100644 --- a/mitmproxy/examples/tls_passthrough.py +++ b/mitmproxy/examples/tls_passthrough.py @@ -26,8 +26,8 @@ import random from enum import Enum -from libmproxy.exceptions import TlsProtocolException -from libmproxy.protocol import TlsLayer, RawTCPLayer +from mitmproxy.exceptions import TlsProtocolException +from mitmproxy.protocol import TlsLayer, RawTCPLayer class InterceptionResult(Enum): |