add http status code 201 to show the right status message in return headers (#402)

This commit is contained in:
SoenkeHeeren 2020-03-26 17:20:32 +01:00 committed by GitHub
parent 5b51aa6851
commit ced4160d05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1599,6 +1599,7 @@ inline const char *status_message(int status) {
switch (status) {
case 100: return "Continue";
case 200: return "OK";
case 201: return "Created";
case 202: return "Accepted";
case 204: return "No Content";
case 206: return "Partial Content";