From c7ee998b2128f8c1f747e44d5248fbaef78a6d34 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Fri, 14 Oct 2022 16:26:08 +0000 Subject: [PATCH] I should probably fill in all of the HTTP status codes here. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4003 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/httpd.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/httpd.js b/core/httpd.js index ed54c256..7d48ce4a 100644 --- a/core/httpd.js +++ b/core/httpd.js @@ -93,6 +93,7 @@ function Response(request, client) { 101: "Switching Protocols", 200: 'OK', 303: 'See other', + 304: 'Not Modified', 403: 'Forbidden', 404: 'File not found', 500: 'Internal server error',