aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/http.py')
-rw-r--r--mitmproxy/http.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mitmproxy/http.py b/mitmproxy/http.py
index 6b527e75..e9902224 100644
--- a/mitmproxy/http.py
+++ b/mitmproxy/http.py
@@ -173,6 +173,10 @@ class HTTPFlow(flow.Flow):
s += ">"
return s.format(flow=self)
+ @property
+ def timestamp_start(self) -> float:
+ return self.request.timestamp_start
+
def copy(self):
f = super().copy()
if self.request: