|
constexpr key_type | HttpStatusCode::Continue = 100 |
|
constexpr key_type | HttpStatusCode::SwitchingProtocols = 101 |
|
constexpr key_type | HttpStatusCode::Processing = 102 |
|
constexpr key_type | HttpStatusCode::EarlyHints = 103 |
|
constexpr key_type | HttpStatusCode::Ok = 200 |
|
constexpr key_type | HttpStatusCode::Created = 201 |
|
constexpr key_type | HttpStatusCode::Accepted = 202 |
|
constexpr key_type | HttpStatusCode::NonAuthoritiveInformation = 203 |
|
constexpr key_type | HttpStatusCode::NoContent = 204 |
|
constexpr key_type | HttpStatusCode::ResetContent = 205 |
|
constexpr key_type | HttpStatusCode::PartialContent = 206 |
|
constexpr key_type | HttpStatusCode::MultiStatus = 207 |
|
constexpr key_type | HttpStatusCode::AlreadyReported = 208 |
|
constexpr key_type | HttpStatusCode::InstanceManipulationUsed = 226 |
|
constexpr key_type | HttpStatusCode::MultipleChoices = 300 |
|
constexpr key_type | HttpStatusCode::MovedPermanently = 301 |
|
constexpr key_type | HttpStatusCode::Found = 302 |
|
constexpr key_type | HttpStatusCode::SeeOther = 303 |
|
constexpr key_type | HttpStatusCode::NotModified = 304 |
|
constexpr key_type | HttpStatusCode::UseProxy = 305 |
|
constexpr key_type | HttpStatusCode::TemporaryRedirect = 307 |
|
constexpr key_type | HttpStatusCode::PermanentRedirect = 308 |
|
constexpr key_type | HttpStatusCode::BadRequest = 400 |
|
constexpr key_type | HttpStatusCode::Unauthorized = 401 |
|
constexpr key_type | HttpStatusCode::PaymentRequired = 402 |
|
constexpr key_type | HttpStatusCode::Forbidden = 403 |
|
constexpr key_type | HttpStatusCode::NotFound = 404 |
|
constexpr key_type | HttpStatusCode::MethodNotAllowed = 405 |
|
constexpr key_type | HttpStatusCode::NotAcceptable = 406 |
|
constexpr key_type | HttpStatusCode::ProxyAuthenticationRequired = 407 |
|
constexpr key_type | HttpStatusCode::RequestTimeout = 408 |
|
constexpr key_type | HttpStatusCode::Conflicts = 409 |
|
constexpr key_type | HttpStatusCode::Gone = 410 |
|
constexpr key_type | HttpStatusCode::LengthRequired = 411 |
|
constexpr key_type | HttpStatusCode::PreconditionFailed = 412 |
|
constexpr key_type | HttpStatusCode::PayloadTooLarge = 413 |
|
constexpr key_type | HttpStatusCode::URITooLarge = 414 |
|
constexpr key_type | HttpStatusCode::UnsupportedMediaType = 415 |
|
constexpr key_type | HttpStatusCode::RangeNotSatisfiable = 416 |
|
constexpr key_type | HttpStatusCode::ExpectationFailed = 417 |
|
constexpr key_type | HttpStatusCode::IamaTeapot = 418 |
|
constexpr key_type | HttpStatusCode::MisdirectedRequest = 421 |
|
constexpr key_type | HttpStatusCode::UnprocessableEntity = 422 |
|
constexpr key_type | HttpStatusCode::Locked = 423 |
|
constexpr key_type | HttpStatusCode::FailedDependency = 424 |
|
constexpr key_type | HttpStatusCode::UpgradeRequired = 426 |
|
constexpr key_type | HttpStatusCode::PreconditionRequired = 428 |
|
constexpr key_type | HttpStatusCode::TooManyRequests = 429 |
|
constexpr key_type | HttpStatusCode::RequestHeaderFieldsTooLarge = 431 |
|
constexpr key_type | HttpStatusCode::UnavailableForLegalReasons = 451 |
|
constexpr key_type | HttpStatusCode::InternalError = 500 |
|
constexpr key_type | HttpStatusCode::NotImplemented = 501 |
|
constexpr key_type | HttpStatusCode::BadGateway = 502 |
|
constexpr key_type | HttpStatusCode::ServiceUnavailable = 503 |
|
constexpr key_type | HttpStatusCode::GatewayTimeout = 504 |
|
constexpr key_type | HttpStatusCode::HTTPVersionNotSupported = 505 |
|
constexpr key_type | HttpStatusCode::VariantAlsoNegotiates = 506 |
|
constexpr key_type | HttpStatusCode::InsufficientStorage = 507 |
|
constexpr key_type | HttpStatusCode::LoopDetected = 508 |
|
constexpr key_type | HttpStatusCode::NotExtended = 510 |
|
constexpr key_type | HttpStatusCode::NetworkAuthorizationRequired = 511 |
|
constexpr pos_type | HttpMethod::Pos::Get = 0 |
|
constexpr pos_type | HttpMethod::Pos::Post = 1 |
|
constexpr pos_type | HttpMethod::Pos::Head = 2 |
|
constexpr pos_type | HttpMethod::Pos::Put = 3 |
|
constexpr pos_type | HttpMethod::Pos::Delete = 4 |
|
constexpr pos_type | HttpMethod::Pos::Options = 5 |
|
constexpr pos_type | HttpMethod::Pos::Trace = 6 |
|
constexpr pos_type | HttpMethod::Pos::Connect = 7 |
|
constexpr pos_type | HttpMethod::Pos::Patch = 8 |
|
constexpr pos_type | HttpMethod::Pos::_LAST = Patch |
|
constexpr type | HttpMethod::Get {1 << Pos::Get} |
|
constexpr type | HttpMethod::Post {1 << Pos::Post} |
|
constexpr type | HttpMethod::Head {1 << Pos::Head} |
|
constexpr type | HttpMethod::Put {1 << Pos::Put} |
|
constexpr type | HttpMethod::Delete {1 << Pos::Delete} |
|
constexpr type | HttpMethod::Options {1 << Pos::Options} |
|
constexpr type | HttpMethod::Trace {1 << Pos::Trace} |
|
constexpr type | HttpMethod::Connect {1 << Pos::Connect} |
|
constexpr type | HttpMethod::Patch {1 << Pos::Patch} |
|