123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145(*----------------------------------------------------------------------------
* Copyright (c) 2017 Inhabited Type LLC.
* Copyright (c) 2019 Antonio N. Monteiro.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the author nor the names of his contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*---------------------------------------------------------------------------*)(* From RFC7540§8.1.1:
* HTTP/2 removes support for the 101 (Switching Protocols) informational
* status code ([RFC7231], Section 6.2.2).
*
* Note: While the above is true, we don't enforce in this library, as it
* makes unifying types with http/af much easier. `H2.Status.t` is, thus, a
* strict superset of `Httpaf.Status.t`. *)include(Httpaf.Status:moduletypeofHttpaf.Statuswithtypeclient_error:=Httpaf.Status.client_errorandtypestandard:=Httpaf.Status.standardandtypet:=Httpaf.Status.t)typeclient_error=[Httpaf.Status.client_error|(* From RFC7540§9.1.2:
* The 421 (Misdirected Request) status code indicates that the request
* was directed at a server that is not able to produce a response. This
* can be sent by a server that is not configured to produce responses
* for the combination of scheme and authority that are included in the
* request URI. *)`Misdirected_request]typestandard=[Httpaf.Status.standard|client_error]typet=[standard|`Codeofint](* Note: The value for reason phrases is never actually serialized to the
* input or output channels.
*
* From RFC7540§8.1.2.4:
* HTTP/2 does not define a way to carry the version or reason phrase that is
* included in an HTTP/1.1 status line. *)letdefault_reason_phrase=function|`Misdirected_request->"Misdirected Request"|#Httpaf.Status.standardast->Httpaf.Status.default_reason_phrasetletto_code=function|`Misdirected_request->421|#Httpaf.Status.tast->Httpaf.Status.to_codetletunsafe_of_code=function|421->`Misdirected_request|c->(Httpaf.Status.unsafe_of_codec:>t)letof_code=function|421->`Misdirected_request|c->(Httpaf.Status.of_codec:>t)letis_informational=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_informationaltletis_successful=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_successfultletis_redirection=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_redirectiontletis_client_error=function|`Misdirected_request->true|#Httpaf.Status.tast->Httpaf.Status.is_client_errortletis_server_error=function|`Misdirected_request->false|#Httpaf.Status.tast->Httpaf.Status.is_server_errortletis_error=function|`Misdirected_request->true|#Httpaf.Status.tast->Httpaf.Status.is_errortletto_string=function|`Misdirected_request->"421"|#Httpaf.Status.tast->Httpaf.Status.to_stringtletof_stringx=of_code(int_of_stringx)letpp_humfmtt=Format.fprintffmt"%u"(to_codet)