From ecf7dac5bc1dfe762399e836fd4d6a5355cf6975 Mon Sep 17 00:00:00 2001 From: ihazar Date: Thu, 24 Mar 2022 20:02:41 +0200 Subject: [PATCH] Update codes.json Added unofficial 440 status code, that was defined in Microsoft's Internet Information Services (IIS) web server and is being adopted widely. --- codes.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/codes.json b/codes.json index 6009217..67fc12b 100644 --- a/codes.json +++ b/codes.json @@ -505,5 +505,14 @@ "doc": "Official Documentation @ https://datatracker.ietf.org/doc/html/rfc7540#section-9.1.2", "description": "Defined in the specification of HTTP/2 to indicate that a server is not able to produce a response for the combination of scheme and authority that are included in the request URI." } + }, + { + "code": 440, + "phrase": "Login Time-out", + "constant": "LOGIN_TIMEOUT", + "isDeprecated": false, + "comment": { + "doc": "Documentation @ https://dynomapper.com/blog/254-the-6-types-of-http-status-codes-explained", + "description": "Defined as part of Microsoft's Internet Information Services (IIS) web server expansion of the 4xx error space to signal errors with the client's request. 440 Status code is sent when the client's session has expired and must log in again." } ]