From 89e2c11cea3cb4914f8d7d413387b3053759b864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Linder?= Date: Fri, 31 Mar 2023 09:51:23 +0200 Subject: [PATCH] Add more HTTP State codes. --- NET/lhs_web_helper.pbi | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/NET/lhs_web_helper.pbi b/NET/lhs_web_helper.pbi index 0e927b5..b9e0aac 100644 --- a/NET/lhs_web_helper.pbi +++ b/NET/lhs_web_helper.pbi @@ -38,6 +38,12 @@ DeclareModule lhs_web_helper #http_head_set_cookie = "set-cookie:" #http_head_redirect = "location:" + ;100er codes + #http_state_100 = "100 Continue" + #http_state_101 = "101 Switching Protocols" + #http_state_102 = "102 Processing" + #http_state_103 = "103 Early Hints" + ;200er codes #http_state_200 = "200 Ok" #http_state_201 = "201 Created" @@ -65,11 +71,12 @@ DeclareModule lhs_web_helper #http_state_402 = "402 Payment Required" #http_state_403 = "403 Forbidden" #http_state_404 = "404 Not Found" + #http_state_426 = "426 Upgrade Required" ;500er codes #http_state_500 = "500 Internal Server Error" #http_state_501 = "501 Not Implemented" - + #http_state_505 = "505 HTTP Version Not Supported" EndDeclareModule Module lhs_web_helper