From 3f71b2a36a219ad4bedc99c2d7a5a3b3cf167358 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 23 Feb 2018 21:03:40 -0800 Subject: [PATCH] Add 409 conflict --- include/crow/http_connection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/crow/http_connection.h b/include/crow/http_connection.h index 3d214f3d2..c17f764f1 100644 --- a/include/crow/http_connection.h +++ b/include/crow/http_connection.h @@ -374,6 +374,7 @@ namespace crow {401, "HTTP/1.1 401 Unauthorized\r\n"}, {403, "HTTP/1.1 403 Forbidden\r\n"}, {404, "HTTP/1.1 404 Not Found\r\n"}, + {409, "HTTP/1.1 409 Conflict\r\n"}, {413, "HTTP/1.1 413 Payload Too Large\r\n"}, {422, "HTTP/1.1 422 Unprocessable Entity\r\n"}, {429, "HTTP/1.1 429 Too Many Requests\r\n"},