From c9c2794fe6d4d780e17cddfcab3beeefd2ba1667 Mon Sep 17 00:00:00 2001 From: Adil Ilhan Date: Wed, 1 Apr 2015 10:39:53 +0300 Subject: [PATCH] HTTP 506 status code added. HTTP 506 status code added in main http status codes file. Reference: RFC 2295 --- main/http_status_codes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/main/http_status_codes.h b/main/http_status_codes.h index 0038f38329..4567fb4f3d 100644 --- a/main/http_status_codes.h +++ b/main/http_status_codes.h @@ -72,6 +72,7 @@ static http_response_status_code_pair http_status_map[] = { { 503, "Service Unavailable" }, { 504, "Gateway Timeout" }, { 505, "HTTP Version Not Supported" }, + { 506, "Variant Also Negotiates" }, { 511, "Network Authentication Required" }, /* to allow search with while() loop */ { 0, NULL } -- 2.40.0