diff options
author | Sascha Schumann <sascha@apache.org> | 2000-11-03 18:34:59 +0100 |
---|---|---|
committer | Sascha Schumann <sascha@apache.org> | 2000-11-03 18:34:59 +0100 |
commit | 6d89d14d4e7846c9f17df77cf38e3c020112b2ca (patch) | |
tree | 4bd30e3d55d16dc4fcd79a071cb37438e99e5a91 /include/http_protocol.h | |
parent | Change the content-length filter to give up (i.e., not provide content-length) (diff) | |
download | apache2-6d89d14d4e7846c9f17df77cf38e3c020112b2ca.tar.xz apache2-6d89d14d4e7846c9f17df77cf38e3c020112b2ca.zip |
Remove REQUEST_CHUNKED_PASS and change ap_discard_request_body()
to use REQUEST_CHUNKED_DECHUNK.
Because of this change, the need for handle_request_body() is gone,
so we remove that as well.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86827 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r-- | include/http_protocol.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index fe2c9a4ac0..953ab92bdd 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -388,7 +388,6 @@ AP_DECLARE(const char *) ap_get_status_line(int status); * REQUEST_NO_BODY Send 413 error if message has any body * REQUEST_CHUNKED_ERROR Send 411 error if body without Content-Length * REQUEST_CHUNKED_DECHUNK If chunked, remove the chunks for me. - * REQUEST_CHUNKED_PASS Pass the chunks to me without removal. * </PRE> * @return either OK or an error code * @deffunc int ap_setup_cleint_block(request_rec *r, int read_policy) |