Update status codes from RFC 2616 and RFC 2518

svn path=/trunk/; revision=17769
This commit is contained in:
Jaap Keuter 2006-03-30 10:16:35 +00:00
parent 95b974d6ba
commit d53b9d7205
1 changed files with 11 additions and 2 deletions

View File

@ -199,6 +199,7 @@ static dissector_handle_t gssapi_handle=NULL;
static const value_string vals_status_code[] = {
{ 100, "Continue" },
{ 101, "Switching Protocols" },
{ 102, "Processing" },
{ 199, "Informational - Others" },
{ 200, "OK"},
@ -208,14 +209,16 @@ static const value_string vals_status_code[] = {
{ 204, "No Content"},
{ 205, "Reset Content"},
{ 206, "Partial Content"},
{ 207, "Multi-Status"},
{ 299, "Success - Others"},
{ 300, "Multiple Choices"},
{ 301, "Moved Permanently"},
{ 302, "Moved Temporarily"},
{ 302, "Found"},
{ 303, "See Other"},
{ 304, "Not Modified"},
{ 305, "Use Proxy"},
{ 307, "Temporary Redirect"},
{ 399, "Redirection - Others"},
{ 400, "Bad Request"},
@ -232,8 +235,13 @@ static const value_string vals_status_code[] = {
{ 411, "Length Required"},
{ 412, "Precondition Failed"},
{ 413, "Request Entity Too Large"},
{ 414, "Request-URI Too Large"},
{ 414, "Request-URI Too Long"},
{ 415, "Unsupported Media Type"},
{ 416, "Requested Range Not Satisfiable"},
{ 417, "Expectation Failed"},
{ 422, "Unprocessable Entity"},
{ 423, "Locked"},
{ 424, "Failed Dependency"},
{ 499, "Client Error - Others"},
{ 500, "Internal Server Error"},
@ -242,6 +250,7 @@ static const value_string vals_status_code[] = {
{ 503, "Service Unavailable"},
{ 504, "Gateway Time-out"},
{ 505, "HTTP Version not supported"},
{ 507, "Insufficient Storage"},
{ 599, "Server Error - Others"},
{ 0, NULL}