Module GapiCurlSource
Ocurl wrapper module.
Sourceval global_init : unit -> [ `Initialized ] t Sourceval init :
?debug_function:(Curl.t -> Curl.curlDebugType -> string -> unit) ->
?timeout:int ->
?connect_timeout:int ->
?follow_location:bool ->
?compress:bool ->
?max_send_speed:int64 ->
?max_recv_speed:int64 ->
?low_speed_limit:int ->
?low_speed_time:int ->
?no_signal:bool ->
?proxy:string ->
?ssl_verifypeer:bool ->
?options:Curl.curlOption list ->
[ `Initialized ] t ->
[ `Created ] t Sourceval set_writefunction : (string -> int) -> [ `Created ] t -> unit Sourceval set_httpget : bool -> [ `Created ] t -> unit Sourceval set_post : bool -> [ `Created ] t -> unit Sourceval set_nobody : bool -> [ `Created ] t -> unit Sourceval set_upload : bool -> [ `Created ] t -> unit Sourceval set_customrequest : string -> [ `Created ] t -> unit Sourceval set_postfields : (string * string) list -> [ `Created ] t -> unit Sourceval set_useragent : string -> [ `Created ] t -> unit Sourceval set_cookies : string list -> [ `Created ] t -> unit Sourceval reset_all_cookies : [ `Created ] t -> unit Sourceval reset_session_cookies : [ `Created ] t -> unit Sourceval get_error_buffer : [ `Created ] t -> string Sourceval get_responsecode : [ `Created ] t -> int Sourceval cleanup : [ `Created ] t -> [ `Destroyed ] t Sourceval global_cleanup : [ `Initialized ] t -> [ `Uninitialized ] t