aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol')
-rw-r--r--libmproxy/protocol/http.py1
-rw-r--r--libmproxy/protocol/http1.py3
-rw-r--r--libmproxy/protocol/http2.py9
-rw-r--r--libmproxy/protocol/tls.py2
4 files changed, 7 insertions, 8 deletions
diff --git a/libmproxy/protocol/http.py b/libmproxy/protocol/http.py
index 4a86f9da..13d7903b 100644
--- a/libmproxy/protocol/http.py
+++ b/libmproxy/protocol/http.py
@@ -242,7 +242,6 @@ class HttpLayer(Layer):
self.send_response(response)
except (NetlibException, H2Error):
self.log(traceback.format_exc(), "debug")
- pass
def change_upstream_proxy_server(self, address):
# Make set_upstream_proxy_server always available,
diff --git a/libmproxy/protocol/http1.py b/libmproxy/protocol/http1.py
index fc2cf07a..a4cd8801 100644
--- a/libmproxy/protocol/http1.py
+++ b/libmproxy/protocol/http1.py
@@ -1,12 +1,9 @@
from __future__ import (absolute_import, print_function, division)
-import six
-from netlib import tcp
from netlib.http import http1
from .http import _HttpTransmissionLayer, HttpLayer
-from .. import utils
from ..models import HTTPRequest, HTTPResponse
diff --git a/libmproxy/protocol/http2.py b/libmproxy/protocol/http2.py
index 04ff8bf6..c121637c 100644
--- a/libmproxy/protocol/http2.py
+++ b/libmproxy/protocol/http2.py
@@ -18,8 +18,6 @@ from .base import Layer
from .http import _HttpTransmissionLayer, HttpLayer
from .. import utils
from ..models import HTTPRequest, HTTPResponse
-from ..exceptions import HttpProtocolException
-from ..exceptions import ProtocolException
class SafeH2Connection(H2Connection):
@@ -131,6 +129,12 @@ class Http2Layer(Layer):
raise NotImplementedError()
def _handle_event(self, event, source_conn, other_conn, is_server):
+ self.log(
+ "HTTP2 Event from {}".format("server" if is_server else "client"),
+ "debug",
+ [repr(event)]
+ )
+
if hasattr(event, 'stream_id'):
if is_server and event.stream_id % 2 == 1:
eid = self.server_to_client_stream_ids[event.stream_id]
@@ -228,7 +232,6 @@ class Http2Layer(Layer):
stream.zombie = time.time()
return
-
frame, _ = hyperframe.frame.Frame.parse_frame_header(raw_frame[:9])
if is_server:
diff --git a/libmproxy/protocol/tls.py b/libmproxy/protocol/tls.py
index 986eb964..378dd7d4 100644
--- a/libmproxy/protocol/tls.py
+++ b/libmproxy/protocol/tls.py
@@ -419,7 +419,7 @@ class TlsLayer(Layer):
try:
self.ctx.connect()
self._establish_tls_with_server()
- except Exception as e:
+ except Exception:
try:
self._establish_tls_with_client()
except: