From 4c699be6c69c56069e09e682696f8fa7fccfbaf9 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 26 Jul 2020 09:38:47 -0400 Subject: [PATCH] [core] recognize status: 421 Misdirected Request --- src/http_kv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http_kv.c b/src/http_kv.c index 283aa15d..45f1ded1 100644 --- a/src/http_kv.c +++ b/src/http_kv.c @@ -107,6 +107,7 @@ static const keyvalue http_status[] = { { 415, CONST_LEN_STR("415 Unsupported Media Type") }, { 416, CONST_LEN_STR("416 Requested Range Not Satisfiable") }, { 417, CONST_LEN_STR("417 Expectation Failed") }, + { 421, CONST_LEN_STR("421 Misdirected Request") }, /* RFC 7540 */ { 422, CONST_LEN_STR("422 Unprocessable Entity") }, /* WebDAV */ { 423, CONST_LEN_STR("423 Locked") }, /* WebDAV */ { 424, CONST_LEN_STR("424 Failed Dependency") }, /* WebDAV */