* modules/http/http_protocol.c (status_lines): Add 103 response.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1927935 13f79535-47bb-0310-9956-
ffa450edef68
* When adding a new code here add it to status_lines as well.
* A future version should dynamically generate the apr_table_t at startup.
*/
-#define RESPONSE_CODES 103
+#define RESPONSE_CODES 104
#define HTTP_CONTINUE 100
#define HTTP_SWITCHING_PROTOCOLS 101
#define HTTP_PROCESSING 102
+#define HTTP_EARLY_HINTS 103
#define HTTP_OK 200
#define HTTP_CREATED 201
#define HTTP_ACCEPTED 202
"100 Continue",
"101 Switching Protocols",
"102 Processing",
-#define LEVEL_200 3
+ "103 Early Hints",
+#define LEVEL_200 4
"200 OK",
"201 Created",
"202 Accepted",
NULL, /* 224 */
NULL, /* 225 */
"226 IM Used",
-#define LEVEL_300 30
+#define LEVEL_300 31
"300 Multiple Choices",
"301 Moved Permanently",
"302 Found",
NULL, /* 306 */
"307 Temporary Redirect",
"308 Permanent Redirect",
-#define LEVEL_400 39
+#define LEVEL_400 40
"400 Bad Request",
"401 Unauthorized",
"402 Payment Required",
NULL, /* 449 */
NULL, /* 450 */
"451 Unavailable For Legal Reasons",
-#define LEVEL_500 91
+#define LEVEL_500 92
"500 Internal Server Error",
"501 Not Implemented",
"502 Bad Gateway",