Module Uri_type (.ml)


module Uri_type: sig .. end


type uri = {
   scheme : string option;
   authority : authority option;
   path : string;
   query : string option;
   fragment : string option;
}
type authority = {
   host_kind : host_kind;
   host : string;
   port : int option;
   userinfo : string option;
}
type host_kind =
| Reg_name
| IPv4address
| IP_literal