diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-06-28 10:02:14 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-06-28 10:02:14 +1200 |
commit | 243e0efefc2ae6842a2d03c7d0a0e648802515b1 (patch) | |
tree | 035bc4bffee65210e2a14f6bf6f79955c7244fd8 /libmproxy/flow.py | |
parent | 35ee0c098f1a9c492ddec34bf03f4f6741ac6d41 (diff) | |
download | mitmproxy-243e0efefc2ae6842a2d03c7d0a0e648802515b1.tar.gz mitmproxy-243e0efefc2ae6842a2d03c7d0a0e648802515b1.tar.bz2 mitmproxy-243e0efefc2ae6842a2d03c7d0a0e648802515b1.zip |
Adjust for new get_remote_cert API.
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r-- | libmproxy/flow.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py index 06300784..0e5ba0e3 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -198,6 +198,7 @@ class Request(HTTPMsg): path: Path portion of the URL timestamp: Seconds since the epoch + method: HTTP method """ def __init__(self, client_conn, httpversion, host, port, scheme, method, path, headers, content, timestamp=None): |