aboutsummaryrefslogtreecommitdiffstats
path: root/docs/features
diff options
context:
space:
mode:
authorThomas Kriechbaumer <Kriechi@users.noreply.github.com>2016-03-27 11:14:28 +0200
committerThomas Kriechbaumer <Kriechi@users.noreply.github.com>2016-03-27 11:14:28 +0200
commitddea3434a217370e5fcbfad98e4ef9c6590d8dc4 (patch)
treea2401f07785a30c8f9ca59c3011d9d055cbd9289 /docs/features
parent2d6eb28fd07359a5c7d909abdee903b9758b7572 (diff)
parent6e4af64050fe9a0efbfa73193131065b96feca3c (diff)
downloadmitmproxy-ddea3434a217370e5fcbfad98e4ef9c6590d8dc4.tar.gz
mitmproxy-ddea3434a217370e5fcbfad98e4ef9c6590d8dc4.tar.bz2
mitmproxy-ddea3434a217370e5fcbfad98e4ef9c6590d8dc4.zip
Merge pull request #1055 from MatthewShao/issue#963
Simplify '.content' by removing CONTENT_MISSING
Diffstat (limited to 'docs/features')
-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.