From a60929f98738e8aa9b089a378ed5597c52b47e81 Mon Sep 17 00:00:00 2001 From: Igor Dubinskiy Date: Wed, 27 Jan 2016 14:08:33 -0800 Subject: [PATCH] Add Go status constants --- contents/codes/100.md | 3 ++- contents/codes/101.md | 3 ++- contents/codes/200.md | 3 ++- contents/codes/201.md | 3 ++- contents/codes/202.md | 3 ++- contents/codes/203.md | 1 + contents/codes/204.md | 3 ++- contents/codes/205.md | 3 ++- contents/codes/206.md | 1 + contents/codes/300.md | 3 ++- contents/codes/301.md | 3 ++- contents/codes/302.md | 3 ++- contents/codes/303.md | 3 ++- contents/codes/304.md | 3 ++- contents/codes/305.md | 3 ++- contents/codes/307.md | 3 ++- contents/codes/400.md | 3 ++- contents/codes/401.md | 3 ++- contents/codes/402.md | 3 ++- contents/codes/403.md | 3 ++- contents/codes/404.md | 3 ++- contents/codes/405.md | 3 ++- contents/codes/406.md | 3 ++- contents/codes/407.md | 3 ++- contents/codes/408.md | 3 ++- contents/codes/409.md | 3 ++- contents/codes/410.md | 3 ++- contents/codes/411.md | 3 ++- contents/codes/412.md | 3 ++- contents/codes/413.md | 3 ++- contents/codes/414.md | 3 ++- contents/codes/415.md | 3 ++- contents/codes/416.md | 3 ++- contents/codes/417.md | 3 ++- contents/codes/418.md | 3 ++- contents/codes/500.md | 3 ++- contents/codes/501.md | 3 ++- contents/codes/502.md | 3 ++- contents/codes/503.md | 3 ++- contents/codes/504.md | 3 ++- contents/codes/505.md | 3 ++- 41 files changed, 80 insertions(+), 39 deletions(-) diff --git a/contents/codes/100.md b/contents/codes/100.md index 035682f..9665b26 100644 --- a/contents/codes/100.md +++ b/contents/codes/100.md @@ -4,6 +4,7 @@ code: 100 title: Continue references: "Rails HTTP Status Symbol": ":continue" + "Go HTTP Status Constant": "http.StatusContinue" --- The initial part of a request has been received and has not yet been rejected by @@ -24,4 +25,4 @@ If the request did not contain an Expect header field containing the * Source: [RFC7231 Section 6.1.1][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/101.md b/contents/codes/101.md index 69b825a..f94a732 100644 --- a/contents/codes/101.md +++ b/contents/codes/101.md @@ -4,6 +4,7 @@ code: 101 title: Switching Protocols references: "Rails HTTP Status Symbol": ":switching_protocols" + "Go HTTP Status Constant": "http.StatusSwitchingProtocols" --- The server understands and is willing to comply with the client's request, via @@ -25,4 +26,4 @@ protocol might be advantageous when delivering resources that use such features. * Source: [RFC7231 Section 6.2.2][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/200.md b/contents/codes/200.md index 2647e00..deee473 100644 --- a/contents/codes/200.md +++ b/contents/codes/200.md @@ -4,6 +4,7 @@ code: 200 title: OK references: "Rails HTTP Status Symbol": ":ok" + "Go HTTP Status Constant": "http.StatusOK" --- The request has succeeded. @@ -35,4 +36,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.3.1][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/201.md b/contents/codes/201.md index 3100aa0..a37c125 100644 --- a/contents/codes/201.md +++ b/contents/codes/201.md @@ -4,6 +4,7 @@ code: 201 title: Created references: "Rails HTTP Status Symbol": ":created" + "Go HTTP Status Constant": "http.StatusCreated" --- The request has been fulfilled and has resulted in one or more new resources @@ -23,4 +24,4 @@ response. * Source: [RFC7231 Section 6.3.2][1] [1]: -[2]: \ No newline at end of file +[1]: diff --git a/contents/codes/203.md b/contents/codes/203.md index d162e4a..a326907 100644 --- a/contents/codes/203.md +++ b/contents/codes/203.md @@ -4,6 +4,7 @@ code: 203 title: Non-authoritative Information references: "Rails HTTP Status Symbol": ":non_authoritative_information" + "Go HTTP Status Constant": "http.StatusNonAuthoritativeInfo" --- The request was successful but the enclosed payload has been modified from that diff --git a/contents/codes/204.md b/contents/codes/204.md index 4052279..d299901 100644 --- a/contents/codes/204.md +++ b/contents/codes/204.md @@ -4,6 +4,7 @@ code: 204 title: No Content references: "Rails HTTP Status Symbol": ":no_content" + "Go HTTP Status Constant": "http.StatusNoContent" --- The server has successfully fulfilled the request and that there is no @@ -43,4 +44,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.3.5][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/205.md b/contents/codes/205.md index 2c1374b..a0c6ea0 100644 --- a/contents/codes/205.md +++ b/contents/codes/205.md @@ -4,6 +4,7 @@ code: 205 title: Reset Content references: "Rails HTTP Status Symbol": ":reset_content" + "Go HTTP Status Constant": "http.StatusResetContent" --- The server has fulfilled the request and desires that the user agent reset the @@ -29,4 +30,4 @@ immediately after sending the blank line terminating the header section. * Source: [RFC7231 Section 6.3.6][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/206.md b/contents/codes/206.md index 314b763..fdf537b 100644 --- a/contents/codes/206.md +++ b/contents/codes/206.md @@ -4,6 +4,7 @@ code: 206 title: Partial Content references: "Rails HTTP Status Symbol": ":partial_content" + "Go HTTP Status Constant": "http.StatusPartialContent" --- The server is successfully fulfilling a range request for the target resource by diff --git a/contents/codes/300.md b/contents/codes/300.md index 678a9a4..ddc21e0 100644 --- a/contents/codes/300.md +++ b/contents/codes/300.md @@ -4,6 +4,7 @@ code: 300 title: Multiple Choices references: "Rails HTTP Status Symbol": ":multiple_choices" + "Go HTTP Status Constant": "http.StatusMultipleChoices" --- The target resource has more than one representation, each with its own more @@ -53,4 +54,4 @@ though deployment is a chicken-and-egg problem. [1]: [2]: [3]: -[4]: \ No newline at end of file +[4]: diff --git a/contents/codes/301.md b/contents/codes/301.md index 79e649a..decafc1 100644 --- a/contents/codes/301.md +++ b/contents/codes/301.md @@ -4,6 +4,7 @@ code: 301 title: Moved Permanently references: "Rails HTTP Status Symbol": ":moved_permanently" + "Go HTTP Status Constant": "http.StatusMovedPermanently" --- The target resource has been assigned a new permanent URI and any future @@ -32,4 +33,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.4.2][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/302.md b/contents/codes/302.md index 562b19c..e65caa3 100644 --- a/contents/codes/302.md +++ b/contents/codes/302.md @@ -4,6 +4,7 @@ code: 302 title: Found references: "Rails HTTP Status Symbol": ":found" + "Go HTTP Status Constant": "http.StatusFound" --- The target resource resides temporarily under a different URI. Since the @@ -23,4 +24,4 @@ POST to GET for the subsequent request. If this behavior is undesired, the * Source: [RFC7231 Section 6.4.3][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/303.md b/contents/codes/303.md index 229aabc..a312a85 100644 --- a/contents/codes/303.md +++ b/contents/codes/303.md @@ -4,6 +4,7 @@ code: 303 title: See Other references: "Rails HTTP Status Symbol": ":see_other" + "Go HTTP Status Constant": "http.StatusSeeOther" --- The server is redirecting the user agent to a different resource, as indicated @@ -39,4 +40,4 @@ reference provided in the Location header field. * Source: [RFC7321 Section 6.4.4][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/304.md b/contents/codes/304.md index 350924c..9a9c7f0 100644 --- a/contents/codes/304.md +++ b/contents/codes/304.md @@ -4,6 +4,7 @@ code: 304 title: Not Modified references: "Rails HTTP Status Symbol": ":not_modified" + "Go HTTP Status Constant": "http.StatusNotModified" --- A conditional GET or HEAD request has been received and would have resulted in a @@ -40,4 +41,4 @@ first empty line after the header fields. * Source: [RFC7232 Section 4.1][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/305.md b/contents/codes/305.md index d079229..2ba38f3 100644 --- a/contents/codes/305.md +++ b/contents/codes/305.md @@ -4,6 +4,7 @@ code: 305 title: Use Proxy #references: # "Rails HTTP Status Symbol": "use_proxy" +# "Go HTTP Status Constant": "http.StatusUseProxy" # - Due to deprecation we won't show this... but should we? --- @@ -14,4 +15,4 @@ to security concerns regarding in-band configuration of a proxy. * Source: [RFC7231 Section 6.4.5][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/307.md b/contents/codes/307.md index 5eb5dfa..153f9a0 100644 --- a/contents/codes/307.md +++ b/contents/codes/307.md @@ -4,6 +4,7 @@ code: 307 title: Temporary Redirect references: "Rails HTTP Status Symbol": ":temporary_redirect" + "Go HTTP Status Constant": "http.StatusTemporaryRedirect" --- The target resource resides temporarily under a different URI and the user agent @@ -28,4 +29,4 @@ proposes defining the status code [308 Permanent Redirect](/308) for this purpos * Source: [RFC7231 Section 6.4.7][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/400.md b/contents/codes/400.md index 2db71a0..a873085 100644 --- a/contents/codes/400.md +++ b/contents/codes/400.md @@ -4,6 +4,7 @@ code: 400 title: Bad Request references: "Rails HTTP Status Symbol": "bad_request" + "Go HTTP Status Constant": "http.StatusBadRequest" --- The server cannot or will not process the request due to something that is @@ -14,4 +15,4 @@ message framing, or deceptive request routing). * Source: [RFC7231 Section 6.5.1][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/401.md b/contents/codes/401.md index cc6eedd..7390397 100644 --- a/contents/codes/401.md +++ b/contents/codes/401.md @@ -4,6 +4,7 @@ code: 401 title: Unauthorized references: "Rails HTTP Status Symbol": ":unauthorized" + "Go HTTP Status Constant": "http.StatusUnauthorized" --- The request has not been applied because it lacks valid authentication @@ -29,4 +30,4 @@ the user, since it usually contains relevant diagnostic information. [1]: [2]: -[3]: \ No newline at end of file +[3]: diff --git a/contents/codes/402.md b/contents/codes/402.md index cda5c17..31520a2 100644 --- a/contents/codes/402.md +++ b/contents/codes/402.md @@ -4,6 +4,7 @@ code: 402 title: Payment Required references: "Rails HTTP Status Symbol": ":payment_required" + "Go HTTP Status Constant": "http.StatusPaymentRequired" --- Reserved for future use. @@ -12,4 +13,4 @@ Reserved for future use. * Source: [RFC7231 Section 6.5.2][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/403.md b/contents/codes/403.md index b805cc8..9c8ce30 100644 --- a/contents/codes/403.md +++ b/contents/codes/403.md @@ -4,6 +4,7 @@ code: 403 title: Forbidden references: "Rails HTTP Status Symbol": ":forbidden" + "Go HTTP Status Constant": "http.StatusForbidden" --- The server understood the request but refuses to authorize it. @@ -25,4 +26,4 @@ target resource MAY instead respond with a status code of * Source: [RFC7231 Section 6.5.3][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/404.md b/contents/codes/404.md index 48d2551..0c0ce8a 100644 --- a/contents/codes/404.md +++ b/contents/codes/404.md @@ -4,6 +4,7 @@ code: 404 title: Not Found references: "Rails HTTP Status Symbol": ":not_found" + "Go HTTP Status Constant": "http.StatusNotFound" --- The origin server did not find a current representation for the target resource @@ -24,4 +25,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 6.5.4][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/405.md b/contents/codes/405.md index 22bc3f6..be78bc1 100644 --- a/contents/codes/405.md +++ b/contents/codes/405.md @@ -4,6 +4,7 @@ code: 405 title: Method Not Allowed references: "Rails HTTP Status Symbol": ":method_not_allowed" + "Go HTTP Status Constant": "http.StatusMethodNotAllowed" --- The method received in the request-line is known by the origin server but not @@ -22,4 +23,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.5.5][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/406.md b/contents/codes/406.md index 26b6830..25a2279 100644 --- a/contents/codes/406.md +++ b/contents/codes/406.md @@ -4,6 +4,7 @@ code: 406 title: Not Acceptable references: "Rails HTTP Status Symbol": ":not_acceptable" + "Go HTTP Status Constant": "http.StatusNotAcceptable" --- The target resource does not have a current representation that would be @@ -26,4 +27,4 @@ described in [RFC7231 Section 6.4.1][3]. [1]: [2]: -[3]: \ No newline at end of file +[3]: diff --git a/contents/codes/407.md b/contents/codes/407.md index a18ba29..cd26f01 100644 --- a/contents/codes/407.md +++ b/contents/codes/407.md @@ -4,6 +4,7 @@ code: 407 title: Proxy Authentication Required references: "Rails HTTP Status Symbol": ":proxy_authentication_required" + "Go HTTP Status Constant": "http.StatusProxyAuthRequired" --- Similar to [401 Unauthorized](/401), but it indicates that the client needs to @@ -24,4 +25,4 @@ header field[2](#ref-2). [1]: [2]: -[3]: \ No newline at end of file +[3]: diff --git a/contents/codes/408.md b/contents/codes/408.md index 8782c6a..809bfa5 100644 --- a/contents/codes/408.md +++ b/contents/codes/408.md @@ -4,6 +4,7 @@ code: 408 title: Request Timeout references: "Rails HTTP Status Symbol": ":request_timeout" + "Go HTTP Status Constant": "http.StatusRequestTimeout" --- The server did not receive a complete request message within the time that it @@ -20,4 +21,4 @@ request in transit, the client MAY repeat that request on a new connection. * Source: [RFC7231 Section 6.5.7][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/409.md b/contents/codes/409.md index 02f41bf..1e24e2c 100644 --- a/contents/codes/409.md +++ b/contents/codes/409.md @@ -4,6 +4,7 @@ code: 409 title: Conflict references: "Rails HTTP Status Symbol": ":conflict" + "Go HTTP Status Constant": "http.StatusConflict" --- The request could not be completed due to a conflict with the current state of @@ -24,4 +25,4 @@ information useful for merging the differences based on the revision history. * Source: [RFC7231 Section 6.5.8][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/410.md b/contents/codes/410.md index 4241e2f..7c31508 100644 --- a/contents/codes/410.md +++ b/contents/codes/410.md @@ -4,6 +4,7 @@ code: 410 title: Gone references: "Rails HTTP Status Symbol": ":gone" + "Go HTTP Status Constant": "http.StatusGone" --- The target resource is no longer available at the origin server and that this @@ -32,4 +33,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.5.9][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/411.md b/contents/codes/411.md index ca01c14..9639689 100644 --- a/contents/codes/411.md +++ b/contents/codes/411.md @@ -4,6 +4,7 @@ code: 411 title: Length Required references: "Rails HTTP Status Symbol": ":length_required" + "Go HTTP Status Constant": "http.StatusLengthRequired" --- The server refuses to accept the request without a defined @@ -18,4 +19,4 @@ containing the length of the message body in the request message. * Source: [RFC7231 Section 6.5.10][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/412.md b/contents/codes/412.md index c344e8a..541357a 100644 --- a/contents/codes/412.md +++ b/contents/codes/412.md @@ -4,6 +4,7 @@ code: 412 title: Precondition Failed references: "Rails HTTP Status Symbol": ":precondition_failed" + "Go HTTP Status Constant": "http.StatusPreconditionFailed" --- One or more conditions given in the request header fields evaluated to false @@ -18,4 +19,4 @@ state. * Source: [RFC7232 Section 4.2][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/413.md b/contents/codes/413.md index c2319a0..817a7b2 100644 --- a/contents/codes/413.md +++ b/contents/codes/413.md @@ -4,6 +4,7 @@ code: 413 title: Payload Too Large references: "Rails HTTP Status Symbol": ":request_entity_too_large" + "Go HTTP Status Constant": "http.StatusRequestEntityTooLarge" --- The server is refusing to process a request because the request payload is @@ -20,4 +21,4 @@ again. * Source: [RFC7231 Section 6.5.11][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/414.md b/contents/codes/414.md index 5fef541..e04d664 100644 --- a/contents/codes/414.md +++ b/contents/codes/414.md @@ -4,6 +4,7 @@ code: 414 title: Request-URI Too Long references: "Rails HTTP Status Symbol": ":request_uri_too_long" + "Go HTTP Status Constant": "http.StatusRequestURITooLong" --- The server is refusing to service the request because the @@ -29,4 +30,4 @@ RFC7234 Section 4.2.2][3] [1]: [2]: -[3]: \ No newline at end of file +[3]: diff --git a/contents/codes/415.md b/contents/codes/415.md index 30a080b..9585cbc 100644 --- a/contents/codes/415.md +++ b/contents/codes/415.md @@ -4,6 +4,7 @@ code: 415 title: Unsupported Media Type references: "Rails HTTP Status Symbol": ":unsupported_media_type" + "Go HTTP Status Constant": "http.StatusUnsupportedMediaType" --- The origin server is refusing to service the request because the payload is in a @@ -16,4 +17,4 @@ Content-Encoding, or as a result of inspecting the data directly. * Source: [RFC7231 Section 6.5.13][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/416.md b/contents/codes/416.md index 3a9182a..d9fbef9 100644 --- a/contents/codes/416.md +++ b/contents/codes/416.md @@ -4,6 +4,7 @@ code: 416 title: Requested Range Not Satisfiable references: "Rails HTTP Status Symbol": ":requested_range_not_satisfiable" + "Go HTTP Status Constant": "http.StatusRequestedRangeNotSatisfiable" --- None of the ranges in the request's Range header field[1](#ref-1) @@ -42,4 +43,4 @@ representation. Thus, clients cannot depend on receiving a [1]: [2]: -[3]: \ No newline at end of file +[3]: diff --git a/contents/codes/417.md b/contents/codes/417.md index 3bdbf68..31f0e4c 100644 --- a/contents/codes/417.md +++ b/contents/codes/417.md @@ -4,6 +4,7 @@ code: 417 title: Expectation Failed references: "Rails HTTP Status Symbol": ":expectation_failed" + "Go HTTP Status Constant": "http.StatusExpectationFailed" --- The expectation given in the request's Expect header field[1](#ref-1) @@ -15,4 +16,4 @@ could not be met by at least one of the inbound servers. * Source: [RFC7231 Section 6.5.14][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/418.md b/contents/codes/418.md index 3ab95f1..0f93d8f 100644 --- a/contents/codes/418.md +++ b/contents/codes/418.md @@ -4,6 +4,7 @@ code: 418 title: I'm a teapot references: "Rails HTTP Status Symbol": ":i'm_a_teapot" + "Go HTTP Status Constant": "http.StatusTeapot" --- Any attempt to brew coffee with a teapot should result in the error code @@ -13,4 +14,4 @@ Any attempt to brew coffee with a teapot should result in the error code * Source: [RFC2324 Section 2.3.2][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/500.md b/contents/codes/500.md index 2d56a23..5fb6974 100644 --- a/contents/codes/500.md +++ b/contents/codes/500.md @@ -4,6 +4,7 @@ code: 500 title: Internal Server Error references: "Rails HTTP Status Symbol": ":internal_server_error" + "Go HTTP Status Constant": "http.StatusInternalServerError" --- The server encountered an unexpected condition that prevented it from fulfilling @@ -13,4 +14,4 @@ the request. * Source: [RFC7231 Section 6.6.1][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/501.md b/contents/codes/501.md index 235e8f2..fd5a46a 100644 --- a/contents/codes/501.md +++ b/contents/codes/501.md @@ -4,6 +4,7 @@ code: 501 title: Not Implemented references: "Rails HTTP Status Symbol": ":not_implemented" + "Go HTTP Status Constant": "http.StatusNotImplemented" --- The server does not support the functionality required to fulfill the request. @@ -21,4 +22,4 @@ method definition or explicit cache controls[1](#ref-1). * Source: [RFC7231 Section 6.6.2][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/502.md b/contents/codes/502.md index 2cb87d0..e46915d 100644 --- a/contents/codes/502.md +++ b/contents/codes/502.md @@ -4,6 +4,7 @@ code: 502 title: Bad Gateway references: "Rails HTTP Status Symbol": ":bad_gateway" + "Go HTTP Status Constant": "http.StatusBadGateway" --- The server, while acting as a gateway or proxy, received an invalid response @@ -13,4 +14,4 @@ from an inbound server it accessed while attempting to fulfill the request. * Source: [RFC7231 Section 6.6.3][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/503.md b/contents/codes/503.md index b5ef4ad..7c527e3 100644 --- a/contents/codes/503.md +++ b/contents/codes/503.md @@ -4,6 +4,7 @@ code: 503 title: Service Unavailable references: "Rails HTTP Status Symbol": ":service_unavailable" + "Go HTTP Status Constant": "http.StatusServiceUnavailable" --- The server is currently unable to handle the request due to a temporary overload @@ -23,4 +24,4 @@ connection. * Source: [RFC7231 Section 6.6.4][1] [1]: -[2]: \ No newline at end of file +[2]: diff --git a/contents/codes/504.md b/contents/codes/504.md index cacc02e..f45853f 100644 --- a/contents/codes/504.md +++ b/contents/codes/504.md @@ -4,6 +4,7 @@ code: 504 title: Gateway Timeout references: "Rails HTTP Status Symbol": ":gateway_timeout" + "Go HTTP Status Constant": "http.StatusGatewayTimeout" --- The server, while acting as a gateway or proxy, did not receive a timely @@ -14,4 +15,4 @@ request. * Source: [RFC7231 Section 6.6.5][1] -[1]: \ No newline at end of file +[1]: diff --git a/contents/codes/505.md b/contents/codes/505.md index 22dec3e..a670b07 100644 --- a/contents/codes/505.md +++ b/contents/codes/505.md @@ -4,6 +4,7 @@ code: 505 title: HTTP Version Not Supported references: "Rails HTTP Status Symbol": ":http_version_not_supported" + "Go HTTP Status Constant": "http.StatusHTTPVersionNotSupported" --- The server does not support, or refuses to support, the major version of HTTP @@ -20,4 +21,4 @@ version is not supported and what other protocols are supported by that server. * Source: [RFC7231 Section 6.6.6][1] [1]: -[2]: \ No newline at end of file +[2]: