From f4970f35b8977940698aeca55627f8dff2ccafb6 Mon Sep 17 00:00:00 2001 From: Abhishek3880 <141427581+abhishekmaniy@users.noreply.github.com> Date: Thu, 9 Oct 2025 13:12:44 +0530 Subject: [PATCH] chore: add missing Cloudflare HTTP status codes (#7117) Co-authored-by: Jay --- lib/helpers/HttpStatusCode.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/helpers/HttpStatusCode.js b/lib/helpers/HttpStatusCode.js index b3e7adca..b68d08e1 100644 --- a/lib/helpers/HttpStatusCode.js +++ b/lib/helpers/HttpStatusCode.js @@ -62,6 +62,12 @@ const HttpStatusCode = { LoopDetected: 508, NotExtended: 510, NetworkAuthenticationRequired: 511, + WebServerIsDown: 521, + ConnectionTimedOut: 522, + OriginIsUnreachable: 523, + TimeoutOccurred: 524, + SslHandshakeFailed: 525, + InvalidSslCertificate: 526, }; Object.entries(HttpStatusCode).forEach(([key, value]) => {