aboutsummaryrefslogtreecommitdiffstats
path: root/docs/features/responsestreaming.rst
diff options
context:
space:
mode:
authorMatthew Shao <me@matshao.com>2016-03-26 16:17:55 +0800
committerMatthew Shao <me@matshao.com>2016-03-26 16:17:55 +0800
commit53e15f778df316a223847cb81e4f2eb25d29a539 (patch)
tree9b24b6e888ca643c75d1bcdb3b411408e718082d /docs/features/responsestreaming.rst
parent08ff00f36d49ef53b1d20d7635a74fa46a249c17 (diff)
downloadmitmproxy-53e15f778df316a223847cb81e4f2eb25d29a539.tar.gz
mitmproxy-53e15f778df316a223847cb81e4f2eb25d29a539.tar.bz2
mitmproxy-53e15f778df316a223847cb81e4f2eb25d29a539.zip
update document for the removal of CONTENT_MISSING
Diffstat (limited to 'docs/features/responsestreaming.rst')
-rw-r--r--docs/features/responsestreaming.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/features/responsestreaming.rst b/docs/features/responsestreaming.rst
index 8975c1f8..9dc27bf4 100644
--- a/docs/features/responsestreaming.rst
+++ b/docs/features/responsestreaming.rst
@@ -48,8 +48,7 @@ Implementation Details
----------------------
When response streaming is enabled, portions of the code which would have otherwise performed
-changes on the response body will see an empty response body instead
-(:py:data:`netlib.http.CONTENT_MISSING`). Any modifications will be ignored.
+changes on the response body will see an empty response body. Any modifications will be ignored.
Streamed responses are usually sent in chunks of 4096 bytes. If the response is sent with a
``Transfer-Encoding: chunked`` header, the response will be streamed one chunk at a time.