From 2d4a5fb116a175df0d464e9a501124a858731d99 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 18 Sep 2015 18:07:38 +0200 Subject: experimental: don't interfere with headers, fix #93 --- libmproxy/protocol/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmproxy/protocol/__init__.py') diff --git a/libmproxy/protocol/__init__.py b/libmproxy/protocol/__init__.py index 35d59f28..0d624fd7 100644 --- a/libmproxy/protocol/__init__.py +++ b/libmproxy/protocol/__init__.py @@ -27,13 +27,13 @@ as late as possible; this makes server replay without any outgoing connections p from __future__ import (absolute_import, print_function, division) from .base import Layer, ServerConnectionMixin, Kill -from .http import Http1Layer, Http2Layer +from .http import Http1Layer, UpstreamConnectLayer, Http2Layer from .tls import TlsLayer, is_tls_record_magic from .rawtcp import RawTCPLayer __all__ = [ "Layer", "ServerConnectionMixin", "Kill", - "Http1Layer", "Http2Layer", + "Http1Layer", "UpstreamConnectLayer", "Http2Layer", "TlsLayer", "is_tls_record_magic", "RawTCPLayer" ] -- cgit v1.2.3