summaryrefslogtreecommitdiffstats
path: root/include/http_protocol.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-10-21 15:20:36 +0200
committerJeff Trawick <trawick@apache.org>2000-10-21 15:20:36 +0200
commit96cf82e63b6c906ac526b24684c5685c660efbbd (patch)
tree07cfa2569a26e2715f4bf083fd0662ac603937af /include/http_protocol.h
parentRename buffer_filter to coalesce_filter. (diff)
downloadapache2-96cf82e63b6c906ac526b24684c5685c660efbbd.tar.xz
apache2-96cf82e63b6c906ac526b24684c5685c660efbbd.zip
Input filters and ap_get_brigade() now have a input mode parameter
(blocking, non-blocking, peek) instead of a length parameter. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86684 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r--include/http_protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h
index 1d76e1d32b..eff978a9f5 100644
--- a/include/http_protocol.h
+++ b/include/http_protocol.h
@@ -529,8 +529,8 @@ AP_DECLARE(int) ap_method_number_of(const char *method);
*/
AP_DECLARE(const char *) ap_method_name_of(int methnum);
-int http_filter(ap_filter_t *f, ap_bucket_brigade *b, apr_ssize_t length);
-apr_status_t dechunk_filter(ap_filter_t *f, ap_bucket_brigade *b, apr_ssize_t length);
+apr_status_t http_filter(ap_filter_t *f, ap_bucket_brigade *b, ap_input_mode_t mode);
+apr_status_t dechunk_filter(ap_filter_t *f, ap_bucket_brigade *b, ap_input_mode_t mode);
/* Hooks */
/*