diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2015-02-11 12:52:02 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2015-02-11 12:52:02 +0000 |
commit | 327fd44e2984e2b75cae6620e8a32c66881a25f7 (patch) | |
tree | f6643142b218aa0045c261c3b22068a48bb08332 /usr.sbin/httpd | |
parent | fb553615789b57887b430cd471e21058952738a8 (diff) |
More http status codes.
OK benno@, reyk@
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/http.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.sbin/httpd/http.h b/usr.sbin/httpd/http.h index 59d1c10641b..00cf235c199 100644 --- a/usr.sbin/httpd/http.h +++ b/usr.sbin/httpd/http.h @@ -1,4 +1,4 @@ -/* $OpenBSD: http.h,v 1.11 2015/01/13 09:21:15 reyk Exp $ */ +/* $OpenBSD: http.h,v 1.12 2015/02/11 12:52:01 florian Exp $ */ /* * Copyright (c) 2012 - 2015 Reyk Floeter <reyk@openbsd.org> @@ -172,7 +172,8 @@ struct http_error { { 415, "Unsupported Media Type" }, \ { 416, "Range Not Satisfiable" }, \ { 417, "Expectation Failed" }, \ - /* 418-421 unassigned */ \ + { 418, "I'm a teapot" }, \ + /* 419-421 unassigned */ \ { 420, "Enhance Your Calm" }, \ { 422, "Unprocessable Entity" }, \ { 423, "Locked" }, \ @@ -184,7 +185,9 @@ struct http_error { { 429, "Too Many Requests" }, \ /* 430 unassigned */ \ { 431, "Request Header Fields Too Large" }, \ - /* 432-499 unassigned */ \ + /* 432-450 unassigned */ \ + { 451, "Unavailable For Legal Reasons" }, \ + /* 452-499 unassigned */ \ { 500, "Internal Server Error" }, \ { 501, "Not Implemented" }, \ { 502, "Bad Gateway" }, \ |