package uri

  1. Overview
  2. Docs
An RFC3986 URI/URL parsing library

Install

Dune Dependency

Authors

Maintainers

Sources

uri-v3.1.0.tbz
sha256=c452823fd870cf7cffe51aef3e9ca646a382dc6f87282f2b16bfe30a7515ac43
sha512=c015576bb077fd243022bcd8804e628d23a253dcd8bbdda8dc2a57e86cfeb9fd629087ec7d7e23dc71dd7cd137450ca2c5ecf8fb7d184ec9d1d4e41f6f83ee38

doc/uri.services_full/Uri_services_full/index.html

Module Uri_services_fullSource

Module that maps the IANA well-known ports to and from their textual service names

Sourceval service_of_tcp_port : int -> string list

Convert a TCP port number into a list of IANA well-known service names

Sourceval service_of_udp_port : int -> string list

Convert a UDP port number into a list of IANA well-known service names

Sourceval tcp_port_of_service : string -> int list

Convert a IANA well-known service name into a list of valid TCP port numbers

Sourceval udp_port_of_service : string -> int list

Convert a IANA well-known service name into a list of valid UDP port numbers

Sourceval tcp_port_of_uri : ?default:string -> Uri.t -> int option

Extract a TCP port from a URI, using a default service if the URI does not contain a scheme

Sourceval udp_port_of_uri : ?default:string -> Uri.t -> int option

Extract a UDP port from a URI, using a default service if the URI does not contain a scheme

Sourceval known_tcp_services : string list

List of known TCP services. These keys are guaranteed to match in the rest of the lookup functions.

Sourceval known_udp_services : string list

List of known UDP services. These keys are guaranteed to match in the rest of the lookup functions.

Sourceval known_services : (string * string list) list

Association list of protocol * service list. Usually populated with at least "tcp" and "udp" keys for those respective protocols.

OCaml

Innovation. Community. Security.