-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mod_http2: r->protocol changed to "HTTP/2.0" (was "HTTP/2") as this will
+ give expected syntax in CGI's SERVER_PROTOCOL is more compatible with
+ existing major/minor handling. Fixes PR 59313.
+
*) core: explicitly exclude 'h2' from protocols announced via an Upgrade:
header as commanded by http-wg.
}
ap_parse_uri(r, req->path);
- r->protocol = "HTTP/2";
+ r->protocol = "HTTP/2.0";
r->proto_num = HTTP_VERSION(2, 0);
r->the_request = apr_psprintf(r->pool, "%s %s %s",