Module Http

module Http: sig .. end
http access

exception Http_error of string
val url_encode : string -> string
val html_decode : string -> string
type header = {
   code :string;
   fields :(string, string) Hashtbl.t;
}
type params = (string * string) list 
type meth = 
| GET
| POST
val conn : ?port:int ->
string ->
meth ->
?headers:params ->
string ->
params ->
?rawdata:string -> (header -> Pervasives.in_channel -> 'a) -> 'a
http access
val https : string ->
meth ->
?headers:params ->
string ->
?rawdata:string ->
params -> [> `Error of [> `Http of int * string ] | `Ok of string ]
https access via cURL