diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-03-02 13:45:35 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-03-02 13:45:35 +1300 |
commit | 091e539a0203ca272e3a4ba2a9f23331bbd85005 (patch) | |
tree | ca907e8b2983360d666d134a5000cb6a26be6512 /test/test_pathoc.py | |
parent | a1d0da2b533b986967a8714c02d567c943d11929 (diff) | |
download | mitmproxy-091e539a0203ca272e3a4ba2a9f23331bbd85005.tar.gz mitmproxy-091e539a0203ca272e3a4ba2a9f23331bbd85005.tar.bz2 mitmproxy-091e539a0203ca272e3a4ba2a9f23331bbd85005.zip |
Big improvements to SSL handling
- pathod now dynamically generates SSL certs, using the ~/.mitmproxy
cacert
- pathoc returns data on SSL peer certificates
- Pathod certificate CN can be specified on command line
- Support SSLv23
Diffstat (limited to 'test/test_pathoc.py')
-rw-r--r-- | test/test_pathoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pathoc.py b/test/test_pathoc.py index d96a1728..5d676d25 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -3,7 +3,7 @@ from libpathod import pathoc, test, version, pathod import tutils def test_response(): - r = pathoc.Response("1.1", 200, "Message", {}, None) + r = pathoc.Response("1.1", 200, "Message", {}, None, None) assert repr(r) |