Provided by: erlang-manpages_25.3.2.8+dfsg-1ubuntu4_all bug

NAME

       http_uri - Old URI utility module, use uri_string instead

DESCRIPTION

       This module is deprecated since OTP 23. Use the module uri_string to properly handle URIs,
       this is the recommended module since OTP 21.

DATA TYPES

       Type definitions that are used more than once in this module:

       boolean() = true | false

       string() = list of ASCII characters

URI DATA TYPES

       Type definitions that are related to URI:

         uri() = string() | binary():
           Syntax   according   to   the   URI   definition   in   RFC   3986,    for    example,
           "http://www.erlang.org/"

       For more information about URI, see RFC 3986.

EXPORTS

       decode(HexEncodedURI) -> URI

              Types:

                 HexEncodedURI = string() | binary() - A possibly hexadecimal encoded URI
                 URI = uri()

              Decodes a possibly hexadecimal encoded URI.

       encode(URI) -> HexEncodedURI

              Types:

                 URI = uri()
                 HexEncodedURI = string() | binary() - Hexadecimal encoded URI

              Encodes a hexadecimal encoded URI.