Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrCloseConnection = NewError(CloseConnection, "actively closing the connection") ErrBadRequest = NewError(BadRequest, "bad request") ErrTooLongRequestLine = NewError(BadRequest, "request line is too long") ErrURLDecoding = NewError(BadRequest, "invalid urlencoded sequence") ErrBadParams = NewError(BadRequest, "bad URI params") ErrBadEncoding = NewError(BadRequest, "bad request encoding") ErrBadChunk = NewError(BadRequest, "malformed chunk-encoded data") ErrNotFound = NewError(NotFound, "not found") ErrInternalServerError = NewError(InternalServerError, "internal server error") ErrNotImplemented = NewError(NotImplemented, "not implemented") ErrMethodNotImplemented = NewError(NotImplemented, "request method is not supported") ErrMethodNotAllowed = NewError(MethodNotAllowed, "method not allowed") ErrBodyTooLarge = NewError(RequestEntityTooLarge, "request body is too large") ErrRequestEntityTooLarge = NewError(RequestEntityTooLarge, "request entity too large") ErrHeaderFieldsTooLarge = NewError(HeaderFieldsTooLarge, "too large headers section") ErrTooManyEncodingTokens = NewError(HeaderFieldsTooLarge, "too many encoding tokens specified") ErrTooManyHeaders = NewError(HeaderFieldsTooLarge, "too many headers") ErrURITooLong = NewError(RequestURITooLong, "request URI too long") ErrHTTPVersionNotSupported = NewError(HTTPVersionNotSupported, "HTTP version not supported") ErrPaymentRequired = NewError(PaymentRequired, "payment required") ErrForbidden = NewError(Forbidden, "forbidden") ErrNotAcceptable = NewError(NotAcceptable, "not acceptable") ErrProxyAuthRequired = NewError(ProxyAuthRequired, "proxy auth required") ErrRequestTimeout = NewError(RequestTimeout, "request timeout") ErrConflict = NewError(Conflict, "conflict") ErrGone = NewError(Gone, "gone") ErrLengthRequired = NewError(LengthRequired, "length required") ErrPreconditionFailed = NewError(PreconditionFailed, "precondition failed") ErrUnsupportedMediaType = NewError(UnsupportedMediaType, "unsupported media type") ErrUnsupportedEncoding = NewError(UnsupportedMediaType, "encoding is not supported") ErrRequestedRangeNotSatisfiable = NewError(RequestedRangeNotSatisfiable, "requested range is not satisfiable") ErrExpectationFailed = NewError(ExpectationFailed, "expectation failed") ErrTeapot = NewError(Teapot, "i'm a teapot") ErrMisdirectedRequest = NewError(MisdirectedRequest, "misdirected request") ErrUnprocessableEntity = NewError(UnprocessableEntity, "unprocessable entity") ErrLocked = NewError(Locked, "locked") ErrFailedDependency = NewError(FailedDependency, "failed dependency") ErrTooEarly = NewError(TooEarly, "too early") ErrUpgradeRequired = NewError(UpgradeRequired, "upgrade required") ErrPreconditionRequired = NewError(PreconditionRequired, "precondition required") ErrTooManyRequests = NewError(TooManyRequests, "too many requests") ErrBadGateway = NewError(BadGateway, "bad gateway") ErrGatewayTimeout = NewError(GatewayTimeout, "gateway timeout") ErrVariantAlsoNegotiates = NewError(VariantAlsoNegotiates, "variant also negotiates") ErrInsufficientStorage = NewError(InsufficientStorage, "insufficient storage") ErrLoopDetected = NewError(LoopDetected, "loop detected") ErrNotExtended = NewError(NotExtended, "not extended") ErrNetworkAuthenticationRequired = NewError(NetworkAuthenticationRequired, "network authentication required") )
View Source
var (
KnownCodes []Code
)
View Source
var Statuses = [maxCodeValue]string{ Continue: "Continue", SwitchingProtocols: "Switching Protocols", Processing: "Processing", EarlyHints: "Early Hints", OK: "OK", Created: "Created", Accepted: "Accepted", NonAuthoritativeInfo: "Non-Authoritative Information", NoContent: "No Content", ResetContent: "Reset Content", PartialContent: "Partial Content", MultiStatus: "Multi-Status", AlreadyReported: "Already Reported", IMUsed: "IM Used", MultipleChoices: "Multiple Choices", MovedPermanently: "Moved Permanently", Found: "Found", SeeOther: "See Other", NotModified: "Not Modified", UseProxy: "Use Proxy", TemporaryRedirect: "Temporary Redirect", PermanentRedirect: "Permanent Redirect", BadRequest: "Bad Request", Unauthorized: "Unauthorized", PaymentRequired: "Payment Required", Forbidden: "Forbidden", NotFound: "Not Found", MethodNotAllowed: "Method Not Allowed", NotAcceptable: "Not Acceptable", ProxyAuthRequired: "Proxy Authentication Required", RequestTimeout: "Request Timeout", Conflict: "Conflict", Gone: "Gone", LengthRequired: "Length Required", PreconditionFailed: "Precondition Failed", RequestEntityTooLarge: "Request Entity Too Large", RequestURITooLong: "Request URI Too Long", UnsupportedMediaType: "Unsupported Media Type", RequestedRangeNotSatisfiable: "Requested Range Not Satisfiable", ExpectationFailed: "Expectation Failed", Teapot: "I'm a teapot", MisdirectedRequest: "Misdirected Request", UnprocessableEntity: "Unprocessable Entity", Locked: "Locked", FailedDependency: "Failed Dependency", TooEarly: "Too Early", UpgradeRequired: "Upgrade Required", PreconditionRequired: "Precondition Required", TooManyRequests: "Too Many Requests", HeaderFieldsTooLarge: "Request Header Fields Too Large", UnavailableForLegalReasons: "Unavailable For Legal Reasons", InternalServerError: "Internal Server Error", NotImplemented: "Not Implemented", BadGateway: "Bad Gateway", ServiceUnavailable: "Service Unavailable", GatewayTimeout: "Gateway Timeout", HTTPVersionNotSupported: "HTTP Version Not Supported", VariantAlsoNegotiates: "Variant Also Negotiates", InsufficientStorage: "Insufficient Storage", LoopDetected: "Loop Detected", NotExtended: "Not Extended", NetworkAuthenticationRequired: "Network Authentication Required", }
Functions ¶
func StringCode ¶ added in v0.17.2
Types ¶
type Code ¶
type Code = uint16
const ( Continue Code = 100 // RFC 9110, 15.2.1 SwitchingProtocols Code = 101 // RFC 9110, 15.2.2 Processing Code = 102 // RFC 2518, 10.1 EarlyHints Code = 103 // RFC 8297 OK Code = 200 // RFC 9110, 15.3.1 Created Code = 201 // RFC 9110, 15.3.2 Accepted Code = 202 // RFC 9110, 15.3.3 NonAuthoritativeInfo Code = 203 // RFC 9110, 15.3.4 NoContent Code = 204 // RFC 9110, 15.3.5 ResetContent Code = 205 // RFC 9110, 15.3.6 PartialContent Code = 206 // RFC 9110, 15.3.7 MultiStatus Code = 207 // RFC 4918, 11.1 AlreadyReported Code = 208 // RFC 5842, 7.1 IMUsed Code = 226 // RFC 3229, 10.4.1 MultipleChoices Code = 300 // RFC 9110, 15.4.1 MovedPermanently Code = 301 // RFC 9110, 15.4.2 Found Code = 302 // RFC 9110, 15.4.3 SeeOther Code = 303 // RFC 9110, 15.4.4 NotModified Code = 304 // RFC 9110, 15.4.5 UseProxy Code = 305 // RFC 9110, 15.4.6 TemporaryRedirect Code = 307 // RFC 9110, 15.4.8 PermanentRedirect Code = 308 // RFC 9110, 15.4.9 BadRequest Code = 400 // RFC 9110, 15.5.1 PaymentRequired Code = 402 // RFC 9110, 15.5.3 Forbidden Code = 403 // RFC 9110, 15.5.4 NotFound Code = 404 // RFC 9110, 15.5.5 MethodNotAllowed Code = 405 // RFC 9110, 15.5.6 NotAcceptable Code = 406 // RFC 9110, 15.5.7 ProxyAuthRequired Code = 407 // RFC 9110, 15.5.8 RequestTimeout Code = 408 // RFC 9110, 15.5.9 Conflict Code = 409 // RFC 9110, 15.5.10 Gone Code = 410 // RFC 9110, 15.5.11 LengthRequired Code = 411 // RFC 9110, 15.5.12 PreconditionFailed Code = 412 // RFC 9110, 15.5.13 RequestEntityTooLarge Code = 413 // RFC 9110, 15.5.14 RequestURITooLong Code = 414 // RFC 9110, 15.5.15 UnsupportedMediaType Code = 415 // RFC 9110, 15.5.16 RequestedRangeNotSatisfiable Code = 416 // RFC 9110, 15.5.17 ExpectationFailed Code = 417 // RFC 9110, 15.5.18 Teapot Code = 418 // RFC 9110, 15.5.19 (Unused) MisdirectedRequest Code = 421 // RFC 9110, 15.5.20 UnprocessableEntity Code = 422 // RFC 9110, 15.5.21 Locked Code = 423 // RFC 4918, 11.3 FailedDependency Code = 424 // RFC 4918, 11.4 TooEarly Code = 425 // RFC 8470, 5.2. UpgradeRequired Code = 426 // RFC 9110, 15.5.22 PreconditionRequired Code = 428 // RFC 6585, 3 TooManyRequests Code = 429 // RFC 6585, 4 HeaderFieldsTooLarge Code = 431 // RFC 6585, 5 CloseConnection Code = 439 InternalServerError Code = 500 // RFC 9110, 15.6.1 NotImplemented Code = 501 // RFC 9110, 15.6.2 BadGateway Code = 502 // RFC 9110, 15.6.3 GatewayTimeout Code = 504 // RFC 9110, 15.6.5 HTTPVersionNotSupported Code = 505 // RFC 9110, 15.6.6 VariantAlsoNegotiates Code = 506 // RFC 2295, 8.1 InsufficientStorage Code = 507 // RFC 4918, 11.5 LoopDetected Code = 508 // RFC 5842, 7.2 NotExtended Code = 510 // RFC 2774, 7 NetworkAuthenticationRequired Code = 511 // RFC 6585, 6 )
HTTP status codes. See: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
Click to show internal directories.
Click to hide internal directories.