1http_uri(3) Erlang Module Definition http_uri(3)
2
3
4
6 http_uri - Old URI utility module, use uri_string instead
7
9 This module is deprecated since OTP 23. Use the module uri_string to
10 properly handle URIs, this is the recommended module since OTP 21.
11
13 Type definitions that are used more than once in this module:
14
15 boolean() = true | false
16
17 string() = list of ASCII characters
18
20 Type definitions that are related to URI:
21
22 uri() = string() | binary():
23 Syntax according to the URI definition in RFC 3986, for example,
24 "http://www.erlang.org/"
25
26 For more information about URI, see RFC 3986.
27
29 decode(HexEncodedURI) -> URI
30
31 Types:
32
33 HexEncodedURI = string() | binary() - A possibly hexadecimal
34 encoded URI
35 URI = uri()
36
37 Decodes a possibly hexadecimal encoded URI.
38
39 encode(URI) -> HexEncodedURI
40
41 Types:
42
43 URI = uri()
44 HexEncodedURI = string() | binary() - Hexadecimal encoded URI
45
46 Encodes a hexadecimal encoded URI.
47
48
49
50Ericsson AB inets 8.3.1.2 http_uri(3)