httpd 2.4.x compatibility - #5
Open
xl32 wants to merge 1 commit into
Open
Conversation
Build against httpd 2.4.52+ as well as trunk. - h3_compat.h keys H3_HAS_RESPONSE_BUCKETS on the same MMN boundary mod_http2 uses (20211221.6). - Without response buckets, remove the core HTTP_HEADER filter from synthesized requests and snapshot response status and headers via h3_response_finalize(), a port of ap_http_header_filter by way of mod_http2's h2_c2_filter.c, minus the HTTP/1.x transport concerns. - Capture status and headers into h3_conn_ctx_t on both paths instead of holding an ap_bucket_response. - Treat the MPM connection-count notifications as optional: stock 2.4.x MPMs lack them, so warn and run in a degraded mode where a graceful child stop does not wait for active QUIC connections to drain, instead of refusing to start. .patches/httpd-2.4.66-pr699.patch adds the notifications to 2.4.x. - Lower the build floor to httpd 2.4.52: ap_create_request (2.4.49), the child_stopping hook (2.4.49) and ap_thread_current (2.4.52) must exist.
xl32
force-pushed
the
httpd-2.4.x-compat
branch
from
August 6, 2026 19:48
c508077 to
59a8c79
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Build against httpd 2.4.68 as well as trunk.