summaryrefslogtreecommitdiff
path: root/include/http_protocol.h
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2019-10-31 16:10:08 +0000
committerYann Ylavic <ylavic@apache.org>2019-10-31 16:10:08 +0000
commitcdc97c43682c15de3303d956df0109970b7b2b92 (patch)
tree067383aaba7643909c86912fbe83ee7febe30d42 /include/http_protocol.h
parente2d7af8692ad1c08f2ef45028d6d5044867d127c (diff)
downloadhttpd-cdc97c43682c15de3303d956df0109970b7b2b92.tar.gz
Revert r1869222, wrong files committed.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1869223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r--include/http_protocol.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h
index f01684783f..b5359a27d8 100644
--- a/include/http_protocol.h
+++ b/include/http_protocol.h
@@ -82,30 +82,6 @@ AP_DECLARE(void) ap_get_mime_headers(request_rec *r);
AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r,
apr_bucket_brigade *bb);
-/**
- * @struct ap_mime_headers_ctx
- * @brief Context for ap_get_mime_headers_ex()
- */
-typedef struct ap_mime_headers_ctx ap_mime_headers_ctx_t;
-struct ap_mime_headers_ctx {
- int limit_req_fields;
- int limit_req_fieldsize;
- apr_table_t *headers;
- apr_table_t *notes;
- apr_bucket_brigade *bb;
- unsigned int strict:1,
- compress:1;
-};
-
-/**
- * Generic version of ap_get_mime_headers_core() that takes a filter as
- * parameter and options regarding limits to apply.
- * @param f The filter to read from
- * @param ctx The context/options (@see ap_mime_headers_ctx)
- */
-AP_DECLARE(int) ap_get_mime_headers_ex(request_rec *r, ap_filter_t *f,
- ap_mime_headers_ctx_t *ctx);
-
/* Finish up stuff after a request */
/**