summaryrefslogtreecommitdiffhomepage
path: root/libs/http
diff options
context:
space:
mode:
Diffstat (limited to 'libs/http')
-rw-r--r--libs/http/luasrc/http/protocol.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/http/luasrc/http/protocol.lua b/libs/http/luasrc/http/protocol.lua
index cd482a94fc..d8ef09f7ae 100644
--- a/libs/http/luasrc/http/protocol.lua
+++ b/libs/http/luasrc/http/protocol.lua
@@ -673,6 +673,7 @@ end
-- @class table
statusmsg = {
[200] = "OK",
+ [206] = "Partial Content",
[301] = "Moved Permanently",
[302] = "Found",
[304] = "Not Modified",
@@ -680,8 +681,10 @@ statusmsg = {
[403] = "Forbidden",
[404] = "Not Found",
[405] = "Method Not Allowed",
+ [408] = "Request Time-out",
[411] = "Length Required",
[412] = "Precondition Failed",
+ [416] = "Requested range not satisfiable",
[500] = "Internal Server Error",
[503] = "Server Unavailable",
}