diff options
author | David Weinstein <dweinst@insitusec.com> | 2016-01-26 11:28:19 -0500 |
---|---|---|
committer | David Weinstein <dweinst@insitusec.com> | 2016-01-26 11:28:19 -0500 |
commit | 11b289d3c7f8c0bae8ec2f570399fcc44675bdd8 (patch) | |
tree | 1b2c06d25040cc69981c6940796d755f1aab280a | |
parent | 21ddd5e50393617d0e4e55b1a8117fc51c67a2b0 (diff) | |
download | mitmproxy-11b289d3c7f8c0bae8ec2f570399fcc44675bdd8.tar.gz mitmproxy-11b289d3c7f8c0bae8ec2f570399fcc44675bdd8.tar.bz2 mitmproxy-11b289d3c7f8c0bae8ec2f570399fcc44675bdd8.zip |
remove client_tls property from TlsLayer
-rw-r--r-- | libmproxy/protocol/tls.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libmproxy/protocol/tls.py b/libmproxy/protocol/tls.py index 07b9f353..f05648ac 100644 --- a/libmproxy/protocol/tls.py +++ b/libmproxy/protocol/tls.py @@ -388,10 +388,6 @@ class TlsLayer(Layer): def alpn_for_client_connection(self): return self.server_conn.get_alpn_proto_negotiated() - @property - def client_tls(self): - return self._client_tls - def __alpn_select_callback(self, conn_, options): """ Once the client signals the alternate protocols it supports, |