summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/http.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/http.c b/src/http.c
index e35e1c0..59e7131 100644
--- a/src/http.c
+++ b/src/http.c
@@ -830,6 +830,8 @@ char *http_ret_text(int ret)
return "Requested Range Not Satisfiable";
case 417:
return "Expectation Failed";
+ case 418:
+ return "I'm a teapot";
case 422:
return "Unprocessable Entity";
case 423:
@@ -840,6 +842,12 @@ char *http_ret_text(int ret)
return "Unordered Collection";
case 426:
return "Upgrade Required";
+ case 444:
+ return "No Response";
+ case 450:
+ return "Blocked by Windows Parental Controls";
+ case 499:
+ return "Client Closed Request";
case 500:
return "Internal Server Error";