Skip to content

Commit

Permalink
Merge branch 'master' into feature-localtime
Browse files Browse the repository at this point in the history
  • Loading branch information
The-EDev committed Mar 20, 2022
2 parents ce432db + b135ec6 commit 6e40d28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/crow/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ namespace crow
NOT_IMPLEMENTED = 501,
BAD_GATEWAY = 502,
SERVICE_UNAVAILABLE = 503,
GATEWAY_TIMEOUT = 504,
VARIANT_ALSO_NEGOTIATES = 506
};

Expand Down
1 change: 1 addition & 0 deletions include/crow/http_connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ namespace crow
{status::NOT_IMPLEMENTED, "HTTP/1.1 501 Not Implemented\r\n"},
{status::BAD_GATEWAY, "HTTP/1.1 502 Bad Gateway\r\n"},
{status::SERVICE_UNAVAILABLE, "HTTP/1.1 503 Service Unavailable\r\n"},
{status::GATEWAY_TIMEOUT, "HTTP/1.1 504 Gateway Timeout\r\n"},
{status::VARIANT_ALSO_NEGOTIATES, "HTTP/1.1 506 Variant Also Negotiates\r\n"},
};

Expand Down

0 comments on commit 6e40d28

Please sign in to comment.