diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-01-20 22:39:28 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-01-20 22:39:28 +1300 |
commit | 25cb9471f08333cf93ba6cb23079a1c4876292af (patch) | |
tree | 987a24549e0b71b8ddfee000c7b1ee759a60d10e /libmproxy/proxy.py | |
parent | 294bca139c7c6551dd09f4a0f870e40d0f05f3fe (diff) | |
download | mitmproxy-25cb9471f08333cf93ba6cb23079a1c4876292af.tar.gz mitmproxy-25cb9471f08333cf93ba6cb23079a1c4876292af.tar.bz2 mitmproxy-25cb9471f08333cf93ba6cb23079a1c4876292af.zip |
Add tests for client certificate support.
Diffstat (limited to 'libmproxy/proxy.py')
-rw-r--r-- | libmproxy/proxy.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index 036d26d3..d2452e36 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -29,14 +29,12 @@ class ProxyError(Exception): return "ProxyError(%s, %s)"%(self.code, self.msg) - class Log(controller.Msg): def __init__(self, msg): controller.Msg.__init__(self) self.msg = msg - class ProxyConfig: def __init__(self, certfile = None, cacert = None, clientcerts = None, no_upstream_cert=False, body_size_limit = None, reverse_proxy=None, transparent_proxy=None, certdir = None, authenticator=None): assert not (reverse_proxy and transparent_proxy) |