1
0
mirror of synced 2025-04-21 22:25:55 +03:00

Merge pull request #334 from vvanelslande/add_503

Add status message: 503 Service Unavailable
This commit is contained in:
yhirose 2020-01-16 06:59:31 -05:00 committed by GitHub
commit e5ca863de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1581,6 +1581,7 @@ inline const char *status_message(int status) {
case 414: return "Request-URI Too Long"; case 414: return "Request-URI Too Long";
case 415: return "Unsupported Media Type"; case 415: return "Unsupported Media Type";
case 416: return "Range Not Satisfiable"; case 416: return "Range Not Satisfiable";
case 503: return "Service Unavailable";
default: default:
case 500: return "Internal Server Error"; case 500: return "Internal Server Error";