diff options
author | Stefan Fritsch <sf@apache.org> | 2012-02-03 20:48:01 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2012-02-03 20:48:01 +0100 |
commit | d79b3c1513cb6052ba5ee80ecf7bd957b4ae02b0 (patch) | |
tree | 556dca6d1f828c8e24ea838de7fd0e9ea3a313cd /modules | |
parent | Fix PR52402. Check if the shared memory was already created for this proxy_se... (diff) | |
download | apache2-d79b3c1513cb6052ba5ee80ecf7bd957b4ae02b0.tar.xz apache2-d79b3c1513cb6052ba5ee80ecf7bd957b4ae02b0.zip |
Fix various filter functions to return apr_status_t instead of int
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1240315 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cache/mod_cache.c | 9 | ||||
-rw-r--r-- | modules/debugging/mod_firehose.c | 10 | ||||
-rw-r--r-- | modules/filters/mod_charset_lite.c | 6 | ||||
-rw-r--r-- | modules/filters/mod_ext_filter.c | 6 | ||||
-rw-r--r-- | modules/filters/mod_proxy_html.c | 2 |
5 files changed, 19 insertions, 14 deletions
diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c index 00bae626f1..dbeafa67d8 100644 --- a/modules/cache/mod_cache.c +++ b/modules/cache/mod_cache.c @@ -577,7 +577,7 @@ static int cache_handler(request_rec *r) * * Deliver cached content (headers and body) up the stack. */ -static int cache_out_filter(ap_filter_t *f, apr_bucket_brigade *in) +static apr_status_t cache_out_filter(ap_filter_t *f, apr_bucket_brigade *in) { request_rec *r = f->r; apr_bucket *e; @@ -726,7 +726,7 @@ static int cache_save_store(ap_filter_t *f, apr_bucket_brigade *in, * waiting for a potentially slow client to acknowledge the failure. */ -static int cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in) +static apr_status_t cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in) { int rv = !OK; request_rec *r = f->r; @@ -1477,7 +1477,8 @@ static int cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in) * Therefore, if this filter is left in, it must mean we need to toss any * existing files. */ -static int cache_remove_url_filter(ap_filter_t *f, apr_bucket_brigade *in) +static apr_status_t cache_remove_url_filter(ap_filter_t *f, + apr_bucket_brigade *in) { request_rec *r = f->r; cache_request_rec *cache; @@ -1522,7 +1523,7 @@ static int cache_remove_url_filter(ap_filter_t *f, apr_bucket_brigade *in) * INCLUDES filter, or to a filter that might perform transformations unique * to the specific request and that would otherwise be non-cacheable. */ -static int cache_filter(ap_filter_t *f, apr_bucket_brigade *in) +static apr_status_t cache_filter(ap_filter_t *f, apr_bucket_brigade *in) { cache_server_conf diff --git a/modules/debugging/mod_firehose.c b/modules/debugging/mod_firehose.c index 6d5ae30c59..7400601f8a 100644 --- a/modules/debugging/mod_firehose.c +++ b/modules/debugging/mod_firehose.c @@ -260,8 +260,11 @@ static apr_status_t pumpit(ap_filter_t *f, apr_bucket *b, firehose_ctx_t *ctx) return rv; } -static int firehose_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, - ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) +static apr_status_t firehose_input_filter(ap_filter_t *f, + apr_bucket_brigade *bb, + ap_input_mode_t mode, + apr_read_type_e block, + apr_off_t readbytes) { apr_bucket *b; apr_status_t rv; @@ -297,7 +300,8 @@ static int firehose_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, return APR_SUCCESS; } -static int firehose_output_filter(ap_filter_t *f, apr_bucket_brigade *bb) +static apr_status_t firehose_output_filter(ap_filter_t *f, + apr_bucket_brigade *bb) { apr_bucket *b; apr_status_t rv = APR_SUCCESS; diff --git a/modules/filters/mod_charset_lite.c b/modules/filters/mod_charset_lite.c index 526f73c26b..39ab18fc1f 100644 --- a/modules/filters/mod_charset_lite.c +++ b/modules/filters/mod_charset_lite.c @@ -969,9 +969,9 @@ static apr_status_t xlate_out_filter(ap_filter_t *f, apr_bucket_brigade *bb) return rv; } -static int xlate_in_filter(ap_filter_t *f, apr_bucket_brigade *bb, - ap_input_mode_t mode, apr_read_type_e block, - apr_off_t readbytes) +static apr_status_t xlate_in_filter(ap_filter_t *f, apr_bucket_brigade *bb, + ap_input_mode_t mode, apr_read_type_e block, + apr_off_t readbytes) { apr_status_t rv; charset_req_t *reqinfo = ap_get_module_config(f->r->request_config, diff --git a/modules/filters/mod_ext_filter.c b/modules/filters/mod_ext_filter.c index 3412c21d38..76ddbc8a03 100644 --- a/modules/filters/mod_ext_filter.c +++ b/modules/filters/mod_ext_filter.c @@ -884,9 +884,9 @@ static apr_status_t ef_output_filter(ap_filter_t *f, apr_bucket_brigade *bb) return rv; } -static int ef_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, - ap_input_mode_t mode, apr_read_type_e block, - apr_off_t readbytes) +static apr_status_t ef_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, + ap_input_mode_t mode, apr_read_type_e block, + apr_off_t readbytes) { ef_ctx_t *ctx = f->ctx; apr_status_t rv; diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index 54e3259938..3bac8982ab 100644 --- a/modules/filters/mod_proxy_html.c +++ b/modules/filters/mod_proxy_html.c @@ -844,7 +844,7 @@ static saxctxt *check_filter_init (ap_filter_t *f) return f->ctx; } -static int proxy_html_filter(ap_filter_t *f, apr_bucket_brigade *bb) +static apr_status_t proxy_html_filter(ap_filter_t *f, apr_bucket_brigade *bb) { apr_bucket* b; meta *m = NULL; |