From 280c39bc4d1aa948136e7c3631326e71b2dd1871 Mon Sep 17 00:00:00 2001 From: cflip Date: Thu, 7 Jul 2022 13:47:27 -0600 Subject: Implement simple URI parsing for multiple pages --- src/HttpResponse.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/HttpResponse.cpp') diff --git a/src/HttpResponse.cpp b/src/HttpResponse.cpp index a9ebbab..2adf84e 100644 --- a/src/HttpResponse.cpp +++ b/src/HttpResponse.cpp @@ -9,6 +9,8 @@ static std::string status_code_string(HttpStatusCode status_code) return "200 OK"; case HttpStatusCode::Forbidden: return "403 Forbidden"; + case HttpStatusCode::NotFound: + return "404 Not Found"; } } -- cgit v1.2.3