2
0
Fork 0

[core] Add status code 418 to li_http_method_string()

personal/stbuehler/wip
Thomas Porzelt 2009-09-05 19:35:39 +02:00
parent 6016ec94fe
commit 0372f3a671
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ gchar *li_http_status_string(guint status_code, guint *len) {
case 415: SET_LEN_AND_RETURN_STR("Unsupported Media Type");
case 416: SET_LEN_AND_RETURN_STR("Request range not satisfiable");
case 417: SET_LEN_AND_RETURN_STR("Expectation Failed");
case 418: SET_LEN_AND_RETURN_STR("I'm a teapot");
case 421: SET_LEN_AND_RETURN_STR("There are too many connections from your internet address");
case 422: SET_LEN_AND_RETURN_STR("Unprocessable Entity");
case 423: SET_LEN_AND_RETURN_STR("Locked");