summaryrefslogtreecommitdiffstats
path: root/include/http_request.h
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2016-08-12 01:37:45 +0200
committerYann Ylavic <ylavic@apache.org>2016-08-12 01:37:45 +0200
commit104ef73c959702fa80c7d7a2f1f23e92b3f8c351 (patch)
tree5de52fcca8b9fd2d3026267781ec3a4ba55d1d7e /include/http_request.h
parenthttp: follow up to r1750392. (diff)
downloadapache2-104ef73c959702fa80c7d7a2f1f23e92b3f8c351.tar.xz
apache2-104ef73c959702fa80c7d7a2f1f23e92b3f8c351.zip
Revert r1756064 and r1756060 until fixed (tests framework passes).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756065 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_request.h')
-rw-r--r--include/http_request.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 8107a4247f..4d82c8a3fe 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -350,21 +350,6 @@ void ap_process_async_request(request_rec *r);
*/
AP_DECLARE(void) ap_die(int type, request_rec *r);
-/**
- * Check whether a connection is still established and has data available,
- * optionnaly consuming blank lines ([CR]LF).
- * @param c The current connection
- * @param bb The brigade to filter
- * @param max_blank_lines Max number of blank lines to consume, or zero
- * to consider them as data (single read).
- * @return APR_SUCCESS: connection ready and empty,
- * APR_ENOTEMPTY: connection ready with data available,
- * APR_NOTFOUND: too much blank lines,
- * APR_E*: connection/general error.
- */
-AP_DECLARE(apr_status_t) ap_check_pipeline(conn_rec *c, apr_bucket_brigade *bb,
- unsigned int max_blank_lines);
-
/* Hooks */
/**