summaryrefslogtreecommitdiff
path: root/lib/inets/doc/src/http_uri.xml
blob: 39b367eb92d2ea39b7b63f30df665b4adbc02844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2012</year><year>2022</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>http_uri</title>
    <prepared></prepared>
    <responsible></responsible>
    <docno></docno>
    <date></date>
    <rev></rev>
  </header>

  <module since="OTP R15B01">http_uri</module>
  <modulesummary>Old URI utility module, use uri_string instead</modulesummary>

  <description>
    <p>This module is deprecated since OTP 23.
    Use the module <seeerl marker="stdlib:uri_string">uri_string</seeerl> to properly handle URIs,
    this is the recommended module since OTP 21.
    </p>
  </description>
  
  <section>
    <title>DATA TYPES</title>
    <p>Type definitions that are used more than once in
      this module:</p>
    <p><c>boolean() = true | false</c></p>
    <p><c>string()</c> = list of ASCII characters</p>

  </section>
  
  <section>
    <title>URI DATA TYPES</title>
    <p>Type definitions that are related to URI:</p>
    
<taglist>
       <tag><c>uri() = string() | binary()</c></tag>
       <item><p>Syntax according to the URI definition in RFC 3986,
       for example, "http://www.erlang.org/"</p></item>
     </taglist>
   
     <p>For more information about URI, see
     <url href="http://www.ietf.org/rfc/rfc3986.txt">RFC 3986</url>.</p>
  </section>
  
  <funcs>
    <func>
      <name since="OTP R15B01">decode(HexEncodedURI) -> URI</name>
      
      <fsummary>Decodes a hexadecimal encoded URI.</fsummary>
      <type>
        <v>HexEncodedURI = string() | binary() - A possibly hexadecimal encoded URI</v>
        <v>URI = uri()</v>
      </type>

      <desc>
        <p>Decodes a possibly hexadecimal encoded URI.</p>

      </desc>
    </func>
    <func>
      <name since="OTP R15B01">encode(URI) -> HexEncodedURI</name>
      
      <fsummary>Encodes a hexadecimal encoded URI.</fsummary>
      <type>
        <v>URI = uri()</v>
        <v>HexEncodedURI = string() | binary() - Hexadecimal encoded URI</v>
      </type>

      <desc>
        <p>Encodes a hexadecimal encoded URI.</p>

        <marker id="decode"></marker>
      </desc>
    </func>
  </funcs>

<!--
  <section>
    <title>SEE ALSO</title>
    <p><url href="http://www.ietf.org/rfc/rfc2616.txt">RFC 2616</url>, 
    <seeerl marker="inets">inets(3)</seeerl>,
      <seeerl marker="kernel:gen_tcp">gen_tcp(3)</seeerl>, 
      <seeerl marker="ssl:ssl">ssl(3)</seeerl>
    </p>
  </section>
-->

</erlref>