0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd::http: Add code 102 Processing (RFC 2518), 103 Early Hints (RFC 8297).

This commit is contained in:
Jason Volk 2020-03-11 18:18:53 -07:00
parent 878b5c91ec
commit 164b881442
2 changed files with 4 additions and 0 deletions

View file

@ -305,6 +305,8 @@ enum ircd::http::code
{
CONTINUE = 100,
SWITCHING_PROTOCOLS = 101,
PROCESSING = 102,
EARLY_HINTS = 103,
OK = 200,
CREATED = 201,

View file

@ -58,6 +58,8 @@ ircd::http::reason
{
{ code::CONTINUE, "Continue" },
{ code::SWITCHING_PROTOCOLS, "Switching Protocols" },
{ code::PROCESSING, "Processing" },
{ code::EARLY_HINTS, "Early Hints" },
{ code::OK, "OK" },
{ code::CREATED, "Created" },