Merge pull request #3336 from SSPkrolik/http-server-codes-update

Added missing 412 - 417 http codes which are standard according to rf…
This commit is contained in:
Dominik Picheta
2015-09-17 17:21:11 +01:00

View File

@@ -67,6 +67,12 @@ type
Http409 = "409 Conflict",
Http410 = "410 Gone",
Http411 = "411 Length Required",
Http412 = "412 Precondition Failed",
Http413 = "413 Request Entity Too Large",
Http414 = "414 Request-URI Too Long",
Http415 = "415 Unsupported Media Type",
Http416 = "416 Requested Range Not Satisfiable",
Http417 = "417 Expectation Failed",
Http418 = "418 I'm a teapot",
Http500 = "500 Internal Server Error",
Http501 = "501 Not Implemented",