diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2001-09-12 18:34:31 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2001-09-12 18:34:31 +0000 |
commit | b2df4282a37381438c46d4d8dbc520c1bf8ae7b1 (patch) | |
tree | 73f26095eafd6c2c076376b397f7eb41474598f1 | |
parent | 9546cd10ab0f9e51123e3111548549d36f10d473 (diff) | |
download | luasocket-b2df4282a37381438c46d4d8dbc520c1bf8ae7b1.tar.gz luasocket-b2df4282a37381438c46d4d8dbc520c1bf8ae7b1.tar.bz2 luasocket-b2df4282a37381438c46d4d8dbc520c1bf8ae7b1.zip |
Updated for LuaSocket 1.4
-rw-r--r-- | README | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -1,5 +1,6 @@ | |||
1 | This directory contains the implementation of the protocols FTP, HTTP | 1 | This directory contains the implementation of the protocols FTP, HTTP |
2 | and SMTP. The files provided are: | 2 | and SMTP, the URL parsing and composition module and the Concat and Code |
3 | auxiliary modules. The files provided are: | ||
3 | 4 | ||
4 | http.lua -- HTTP protocol implementation | 5 | http.lua -- HTTP protocol implementation |
5 | 6 | ||
@@ -16,17 +17,22 @@ SMTP mail server. The implementation conforms to RFC 821. | |||
16 | The module ftp.lua provides functions to download and upload files from | 17 | The module ftp.lua provides functions to download and upload files from |
17 | and to FTP servers. The implementation conforms to RFC 959. | 18 | and to FTP servers. The implementation conforms to RFC 959. |
18 | 19 | ||
19 | base64.lua -- base64 encoding implementation | 20 | url.lua -- URL parsing and composition |
20 | 21 | ||
21 | The base64.lua module provides base64 encoding and decoding. The module | 22 | The module url.lua provides routines to split a URL into its components |
22 | is used for the HTTP Basic Authentication Scheme, and conforms to RFC | 23 | and to compose a base URL and relative URL into an absolute URL. |
23 | 1521. | ||
24 | 24 | ||
25 | buffer.lua -- fast concatenation library | 25 | code.lua -- some coding conversion routines |
26 | 26 | ||
27 | The module buffer.lua implements, completely in Lua, a set of functions | 27 | The code.lua module provides base64, hexa and escaped encoding and |
28 | decoding. The module is used for the HTTP Basic Authentication Scheme, | ||
29 | and URL protection, conforming to RFC 1521. | ||
30 | |||
31 | concat.lua -- fast concatenation library | ||
32 | |||
33 | The module concat.lua implements, completely in Lua, a set of functions | ||
28 | that greatly improves the performance of repeated concatenations of Lua | 34 | that greatly improves the performance of repeated concatenations of Lua |
29 | strings. The module was created by Roberto Ierusalimschy. | 35 | strings. The algorithm was inventd by Roberto Ierusalimschy. |
30 | 36 | ||
31 | These modules are part of the LuaSocket library and are supported. | 37 | These modules are part of the LuaSocket library and are supported. |
32 | Please send any comments to diego@tecgraf.puc-rio.br. | 38 | Please send any comments to diego@tecgraf.puc-rio.br. |