39 lines
1.6 KiB
Diff
39 lines
1.6 KiB
Diff
From f7f15f3d8bfe3032926c8c39eb8434529f680bd4 Mon Sep 17 00:00:00 2001
|
|
From: ylavic <ylavic@apache.org>
|
|
Date: Wed Jun 1 13:48:21 2022 UTC
|
|
Subject: [PATCH] mod_proxy_ajp: T-E has precedence over C-L.
|
|
|
|
---
|
|
modules/proxy/mod_proxy_ajp.c | 15 ++++++++++++---
|
|
1 file changed, 12 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c
|
|
index e2992fc..a77a86b 100644
|
|
--- a/modules/proxy/mod_proxy_ajp.c
|
|
+++ b/modules/proxy/mod_proxy_ajp.c
|
|
@@ -246,9 +246,18 @@ static int ap_proxy_ajp_request(apr_pool_t *p, request_rec *r,
|
|
/* read the first block of data */
|
|
input_brigade = apr_brigade_create(p, r->connection->bucket_alloc);
|
|
tenc = apr_table_get(r->headers_in, "Transfer-Encoding");
|
|
- if (tenc && (ap_cstr_casecmp(tenc, "chunked") == 0)) {
|
|
- /* The AJP protocol does not want body data yet */
|
|
- ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(00870) "request is chunked");
|
|
+ if (tenc) {
|
|
+ if (ap_cstr_casecmp(tenc, "chunked") == 0) {
|
|
+ /* The AJP protocol does not want body data yet */
|
|
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(00870)
|
|
+ "request is chunked");
|
|
+ }
|
|
+ else {
|
|
+ ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10396)
|
|
+ "%s Transfer-Encoding is not supported",
|
|
+ tenc);
|
|
+ return HTTP_INTERNAL_SERVER_ERROR;
|
|
+ }
|
|
} else {
|
|
/* Get client provided Content-Length header */
|
|
content_length = get_content_length(r);
|
|
--
|
|
1.8.3.1
|
|
|