diff options
| author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-08-31 01:00:15 +0000 |
|---|---|---|
| committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-08-31 01:00:15 +0000 |
| commit | 982781f1464c9b7a8133130433f83dbf1f59a2c0 (patch) | |
| tree | 8f96f9e9fa1e6bef8b8356037986ddc18673cade /doc/reference.html | |
| parent | 6789b83ff5c15296267f880d3b98cf8a1800c30a (diff) | |
| download | luasocket-982781f1464c9b7a8133130433f83dbf1f59a2c0.tar.gz luasocket-982781f1464c9b7a8133130433f83dbf1f59a2c0.tar.bz2 luasocket-982781f1464c9b7a8133130433f83dbf1f59a2c0.zip | |
LuaSocket 2.0 User's Manual.
Diffstat (limited to 'doc/reference.html')
| -rw-r--r-- | doc/reference.html | 209 |
1 files changed, 209 insertions, 0 deletions
diff --git a/doc/reference.html b/doc/reference.html new file mode 100644 index 0000000..39f6437 --- /dev/null +++ b/doc/reference.html | |||
| @@ -0,0 +1,209 @@ | |||
| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> | ||
| 3 | <html> | ||
| 4 | |||
| 5 | <head> | ||
| 6 | <title>LuaSocket: Network support for the Lua language </title> | ||
| 7 | <link rel="stylesheet" href="reference.css" type="text/css"> | ||
| 8 | </head> | ||
| 9 | |||
| 10 | <body> | ||
| 11 | |||
| 12 | <!-- header ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 13 | |||
| 14 | <div class=header> | ||
| 15 | <hr> | ||
| 16 | <center> | ||
| 17 | <table summary="LuaSocket logo"> | ||
| 18 | <tr><td align=center><a href="http://www.lua.org"> | ||
| 19 | <img border=0 alt="LuaSocket" src="luasocket.png"> | ||
| 20 | </a></td></tr> | ||
| 21 | <tr><td align=center valign=top>Network support for the Lua language | ||
| 22 | </td></tr> | ||
| 23 | </table> | ||
| 24 | <p class=bar> | ||
| 25 | <a href="home.html">home</a> · | ||
| 26 | <a href="home.html#download">download</a> · | ||
| 27 | <a href="introduction.html">introduction</a> · | ||
| 28 | <a href="reference.html">reference</a> | ||
| 29 | </p> | ||
| 30 | </center> | ||
| 31 | <hr> | ||
| 32 | </div> | ||
| 33 | |||
| 34 | <!-- reference +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 35 | |||
| 36 | <h2>Reference</h2> | ||
| 37 | |||
| 38 | <!-- tcp +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 39 | |||
| 40 | <table summary="TCP Index" class=index width=100%> | ||
| 41 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 42 | <tr> | ||
| 43 | <td><ul> | ||
| 44 | <li><a href="tcp.html">TCP (socket.tcp)</a> | ||
| 45 | <ul> | ||
| 46 | <li><a href="tcp.html#accept">accept</a> | ||
| 47 | <li><a href="tcp.html#bind">bind</a> | ||
| 48 | <li><a href="tcp.html#close">close</a> | ||
| 49 | <li><a href="tcp.html#connect">connect</a> | ||
| 50 | <li><a href="tcp.html#getpeername">getpeername</a> | ||
| 51 | </ul> | ||
| 52 | </ul></td> | ||
| 53 | <td valign=top><ul> | ||
| 54 | <li><a href="tcp.html#getsockname">getsockname</a> | ||
| 55 | <li><a href="tcp.html#receive">receive</a> | ||
| 56 | <li><a href="tcp.html#send">send</a> | ||
| 57 | <li><a href="tcp.html#setoption">setoption</a> | ||
| 58 | <li><a href="tcp.html#settimeout">settimeout</a> | ||
| 59 | </ul></td> | ||
| 60 | </tr> | ||
| 61 | </table> | ||
| 62 | |||
| 63 | <hr> | ||
| 64 | |||
| 65 | <!-- udp +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 66 | |||
| 67 | <table summary="UDP Index" class=index width=100%> | ||
| 68 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 69 | <tr> | ||
| 70 | <td><ul> | ||
| 71 | <li><a href="udp.html">UDP (socket.udp)</a> | ||
| 72 | <ul> | ||
| 73 | <li><a href="udp.html#close">close</a> | ||
| 74 | <li><a href="udp.html#getpeername">getpeername</a> | ||
| 75 | <li><a href="udp.html#getsockname">getsockname</a> | ||
| 76 | <li><a href="udp.html#receive">receive</a> | ||
| 77 | <li><a href="udp.html#receivefrom">receivefrom</a> | ||
| 78 | </ul> | ||
| 79 | </ul></td> | ||
| 80 | <td><ul> | ||
| 81 | <li><a href="udp.html#send">send</a> | ||
| 82 | <li><a href="udp.html#sendto">sendto</a> | ||
| 83 | <li><a href="udp.html#setpeername">setpeername</a> | ||
| 84 | <li><a href="udp.html#setsockname">setsockname</a> | ||
| 85 | <li><a href="udp.html#setoption">setoption</a> | ||
| 86 | <li><a href="udp.html#settimeout">settimeout</a> | ||
| 87 | </ul></td> | ||
| 88 | </tr> | ||
| 89 | </table> | ||
| 90 | |||
| 91 | <hr> | ||
| 92 | |||
| 93 | <!-- http & ftp ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 94 | |||
| 95 | <table summary="HTTP and FTP Index" class=index width=100% rules=cols> | ||
| 96 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 97 | <tr> | ||
| 98 | <td valign=top><ul> | ||
| 99 | <li><a href="http.html">HTTP (socket.http)</a> | ||
| 100 | <ul> | ||
| 101 | <li><a href="http.html#get">get</a> | ||
| 102 | <li><a href="http.html#post">post</a> | ||
| 103 | <li><a href="http.html#request">request</a> | ||
| 104 | <li><a href="http.html#request_cb">request_cb</a> | ||
| 105 | </ul> | ||
| 106 | </ul></td> | ||
| 107 | <td valign=top><ul> | ||
| 108 | <li><a href="ftp.html">FTP (socket.ftp)</a> | ||
| 109 | <ul> | ||
| 110 | <li><a href="ftp.html#get">get</a> | ||
| 111 | <li><a href="ftp.html#get_cb">get_cb</a> | ||
| 112 | <li><a href="ftp.html#put">put</a> | ||
| 113 | <li><a href="ftp.html#put_cb">put_cb</a> | ||
| 114 | </ul> | ||
| 115 | </ul></td> | ||
| 116 | </tr> | ||
| 117 | </table> | ||
| 118 | |||
| 119 | <hr> | ||
| 120 | |||
| 121 | <!-- http & ftp ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 122 | |||
| 123 | <table summary="Streaming Index" class=index width=100%> | ||
| 124 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 125 | <tr><td valign=top><ul> | ||
| 126 | <li><a href="stream.html">Streaming with Callbacks</a> | ||
| 127 | <ul> | ||
| 128 | <li><a href="stream.html#receive_cb">receive_cb</a> | ||
| 129 | <li><a href="stream.html#send_cb">send_cb</a> | ||
| 130 | </ul> | ||
| 131 | </ul></td></tr> | ||
| 132 | </table> | ||
| 133 | |||
| 134 | <hr> | ||
| 135 | |||
| 136 | <!-- smtp & dns ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 137 | |||
| 138 | <table summary="SMTP and DNS Index" class=index width=100% rules=cols> | ||
| 139 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 140 | <tr> | ||
| 141 | <td><ul> | ||
| 142 | <li><a href="smtp.html">SMTP (socket.smtp)</a> | ||
| 143 | <ul> | ||
| 144 | <li> <a href="mod.html#mail">mail</a> | ||
| 145 | </ul> | ||
| 146 | </ul></td> | ||
| 147 | <td><ul> | ||
| 148 | <li><a href="dns.html">DNS services (socket.dns)</a> | ||
| 149 | <ul> | ||
| 150 | <li><a href="dns.html#toip">toip</a> | ||
| 151 | <li><a href="dns.html#tohostname">tohostname</a> | ||
| 152 | </ul> | ||
| 153 | </ul></td> | ||
| 154 | </tr> | ||
| 155 | </table> | ||
| 156 | |||
| 157 | <hr> | ||
| 158 | |||
| 159 | <!-- url & code ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 160 | |||
| 161 | <table summary="URL and Code Index" class=index width=100% rules=cols> | ||
| 162 | <colgroup> <col width="50%"> <col width="50%"> </colgroup> | ||
| 163 | <tr> | ||
| 164 | <td valign=top><ul> | ||
| 165 | <li><a href="url.html">URL (socket.url) </a> | ||
| 166 | <ul> | ||
| 167 | <li> <a href="url.html#absolute">absolute</a> | ||
| 168 | <li> <a href="url.html#build">build</a> | ||
| 169 | <li> <a href="url.html#build_path">build_path</a> | ||
| 170 | <li> <a href="url.html#parse">parse</a> | ||
| 171 | <li> <a href="url.html#parse_path">parse_path</a> | ||
| 172 | </ul> | ||
| 173 | </ul></td> | ||
| 174 | <td valign=top><ul> | ||
| 175 | <li> <a href="code.html">Code (socket.code) </a> | ||
| 176 | <ul> | ||
| 177 | <li> <a href="code.html#base64">base64</a> | ||
| 178 | <li> <a href="code.html#unbase64">unbase64</a> | ||
| 179 | <li> <a href="code.html#escape">escape</a> | ||
| 180 | <li> <a href="code.html#unescape">unescape</a> | ||
| 181 | <li> <a href="code.html#hexa">hexa</a> | ||
| 182 | <li> <a href="code.html#unhexa">unhexa</a> | ||
| 183 | </ul> | ||
| 184 | </ul></td> | ||
| 185 | </tr> | ||
| 186 | </table> | ||
| 187 | |||
| 188 | <!-- footer ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
| 189 | |||
| 190 | <div class=footer> | ||
| 191 | <hr> | ||
| 192 | <center> | ||
| 193 | <p class=bar> | ||
| 194 | <a href="home.html">home</a> · | ||
| 195 | <a href="home.html#down">download</a> · | ||
| 196 | <a href="introduction.html">introduction</a> · | ||
| 197 | <a href="reference.html">reference</a> | ||
| 198 | </p> | ||
| 199 | <p> | ||
| 200 | <small> | ||
| 201 | Last modified by Diego Nehab on <br> | ||
| 202 | Thu Sep 27 16:18:27 EST 2001 | ||
| 203 | </small> | ||
| 204 | </p> | ||
| 205 | </center> | ||
| 206 | </div> | ||
| 207 | |||
| 208 | </body> | ||
| 209 | </html> | ||
