From e01e1ef7d893dde2dd3aa1f314fdab67770d8908 Mon Sep 17 00:00:00 2001 From: Dumitru Uzun Date: Mon, 31 Jan 2022 11:34:49 +0200 Subject: [PATCH] HTTP/2 support Here is a sample HTTP/2 response head: ```http HTTP/2 200 server: ddos-guard date: Mon, 31 Jan 2022 09:33:45 GMT content-type: text/xml content-encoding: gzip vary: Accept-Encoding ``` --- src/Helper/Http.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Helper/Http.php b/src/Helper/Http.php index d12f456..1cd375c 100644 --- a/src/Helper/Http.php +++ b/src/Helper/Http.php @@ -115,13 +115,13 @@ class Http // When using Curl to query servers using Digest Auth, we get back a double set of http headers. // We strip out the 1st... - if ($headersProcessed && preg_match('/^HTTP\/[0-9]\.[0-9] 401 /', $data)) { - if (preg_match('/(\r?\n){2}HTTP\/[0-9]\.[0-9] 200 /', $data)) { - $data = preg_replace('/^HTTP\/[0-9]\.[0-9] 401 .+?(?:\r?\n){2}(HTTP\/[0-9.]+ 200 )/s', '$1', $data, 1); + if ($headersProcessed && preg_match('/^HTTP\/[0-9](?:\.[0-9])? 401 /', $data)) { + if (preg_match('/(\r?\n){2}HTTP\/[0-9](?:\.[0-9])? 200 /', $data)) { + $data = preg_replace('/^HTTP\/[0-9](?:\.[0-9])? 401 .+?(?:\r?\n){2}(HTTP\/[0-9.]+ 200 )/s', '$1', $data, 1); } } - if (preg_match('/^HTTP\/[0-9]\.[0-9] ([0-9]{3}) /', $data, $matches)) { + if (preg_match('/^HTTP\/[0-9](?:\.[0-9])? ([0-9]{3}) /', $data, $matches)) { $httpResponse['status_code'] = $matches[1]; } -- 2.43.0