class type http_call =object..end
http_call is the runtime container for HTTP method calls. It contains
 the request message, the response message, and the current transmission
 status.
 In previous versions of netclient, this class type was called 
 message. This was quite inexact because this class embraces both
 messages that are part of a call.
Incompatible changes:
using_proxy has been removed. This simply isn't a property of
   an individual call.get_req_uri has been removed from the public interface for similar
   reasons.Netmime.mime_header and Netmime.mime_body objects. The old
   style access methods remain in the API for now. The advantage is
   that it is possible to use external files as body containers.`Base and `Effective.method is_served : booltrue if request/response cycle(s) have been finished, i.e. the
 call was successful, or a final error state has been reached.method status : statusmethod auth_status : unit auth_statusstatus and all the other methods just report about the
        last message from the server. They will not indicate whether the
        authentication
        failed on the side of the client (in particular, no exception is
        thrown). It is required to check that auth_status=`OK.
        An example of a mechanism with mutual authentication is
        Netmech_digest_http.Digest_mutual.
method tls_session_props : Nettls_support.tls_session_props optionmethod gssapi_props : Netsys_gssapi.client_props optionmethod request_method : stringmethod request_uri : stringmethod set_request_uri : string -> unit
	Changed in Ocamlnet-3.3: The URI is no longer immediately parsed,
	but first when the call is submitted to a pipeline. This means that
	parsing errors will first be reported by the add method. The
	background is that parsing now depends on pipeline options.
method request_header : header_kind -> Netmime.mime_header`Base header. After the call has been processed,
 the `Effective header contains the version of the header that has
 actually been transmitted.
The user should set the following headers:
Content-length: Set this to the length of the request body
   if known. (The client falls back to HTTP 1.0 if not set!)Content-type: Set this to the media type of the request bodyExpect: Set this to "100-continue" to enable a handshake before
   the body is sent. Recommended for large bodies. (See also
   set_expect_handshake below.)DateUser-agentConnectionmethod set_request_header : Netmime.mime_header -> unit`Base header objectmethod set_expect_handshake : unit -> unitmethod set_chunked_request : unit -> unitmethod effective_request_uri : stringmethod request_body : Netmime.mime_bodyset_request_device has been called (no body then).method set_request_body : Netmime.mime_body -> unitmethod set_request_device : (unit -> Uq_io.in_device) -> unitmethod set_accept_encoding : unit -> unitAccept-Encoding field in the request header, and 
	includes all decompression algorithms registered in
	Netcompression. Additionally, the automatic decompression of
	the response body is enabled.
	Note that you need to ensure that the algorithms are really
	registered at Netcompression. For example, to get gzip
	support, run 
 Netgzip.init() netzip as
	library.method response_status_code : intmethod response_status_text : stringmethod response_status : Nethttp.http_status`Ok, `Multiple_choices, `Bad_request, and 
 `Internal_server_error.method response_protocol : stringmethod response_header : Netmime.mime_headerHttp_protocol will be raised.method response_body : Netmime.mime_bodyHttp_protocol will be raised. If the call has succeeded, 
 but no body has been transmitted, the empty body is substituted.
 If the response is directly forwarded to a device (after
 calling set_response_body_storage (`Device d)), there is
 no accessible response body, and this method will fail.
method response_body_storage : response_body_storage`Memory.method set_response_body_storage : response_body_storage -> unitmethod max_response_body_length : int64Int64.max_int)method set_max_response_body_length : int64 -> unitResponse_too_large.method get_reconnect_mode : http_call how_to_reconnectSend_again_if_idem.method set_reconnect_mode : http_call how_to_reconnect -> unitmethod get_redirect_mode : http_call how_to_redirectRedirect_if_idem.method set_redirect_mode : http_call how_to_redirect -> unitmethod proxy_enabled : boolmethod set_proxy_enabled : bool -> unitmethod no_proxy : unit -> unitset_proxy_enabled falsemethod is_proxy_allowed : unit -> boolproxy_enabledmethod proxy_use_connect : boolNethttp_client.https_trans_idmethod empty_path_replacement : stringmethod is_idempotent : boolmethod has_req_body : boolmethod has_resp_body : boolmethod set_transport_layer : transport_layer_id -> unitset_request_uri also sets
	this ID, but always to the default for the type of URL.method same_call : unit -> http_call`Unservedmethod get_req_method : unit -> stringrequest_method.method get_host : unit -> string
	Changed in Ocamlnet-3.3: The host can first be extracted after
	the call is submitted to a pipeline.
method get_port : unit -> int
	Changed in Ocamlnet-3.3: The port can first be extracted after
	the call is submitted to a pipeline.
method get_path : unit -> string
	Changed in Ocamlnet-3.3: The path can first be extracted after
	the call is submitted to a pipeline.
method get_uri : unit -> stringrequest_uri.method get_req_body : unit -> stringrequest_body # value.method get_req_header : unit -> (string * string) list
 In new code, the request_header object should be accessed instead.
method assoc_req_header : string -> stringNot_foundmethod assoc_multi_req_header : string -> string listmethod set_req_header : string -> string -> unit
method get_resp_header : unit -> (string * string) listmethod assoc_resp_header : string -> stringmethod assoc_multi_resp_header : string -> string listmethod get_resp_body : unit -> string
 Otherwise, Http_error (code, body) is raised where 'code' is
 the response code and 'body' is the body of the (errorneous)
 response.
method dest_status : unit -> string * int * stringmethod private_api : private_api
        