diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2001-06-06 20:59:12 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2001-06-06 20:59:12 +0000 |
commit | f66963f9a199250dc836835db649679e4dce881f (patch) | |
tree | 241295b9ac355aac709e0f949699be55efca18ad | |
parent | c53ad62b00b9dbf2a54214c2c6bf3f06d7c43eea (diff) | |
download | luasocket-f66963f9a199250dc836835db649679e4dce881f.tar.gz luasocket-f66963f9a199250dc836835db649679e4dce881f.tar.bz2 luasocket-f66963f9a199250dc836835db649679e4dce881f.zip |
Updated for 1.3b.
-rw-r--r-- | README | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -2,12 +2,9 @@ This directory contains the implementation of the protocols FTP, HTTP | |||
2 | and SMTP. The files provided are: | 2 | and SMTP. The files provided are: |
3 | 3 | ||
4 | http.lua -- HTTP protocol implementation | 4 | http.lua -- HTTP protocol implementation |
5 | base64.lua -- base64 encoding implementation | ||
6 | 5 | ||
7 | The module http.lua provides general HTTP client support. The | 6 | The module http.lua provides general HTTP client support. The |
8 | implementation conforms to the HTTP/1.1 standard, RFC 2068. The | 7 | implementation conforms to the HTTP/1.1 standard, RFC 2068. |
9 | base64.lua module provides base64 encoding and decoding. The module is | ||
10 | used for the HTTP Basic Authentication Scheme, and conforms to RFC 1521. | ||
11 | 8 | ||
12 | smtp.lua -- SMTP protocol implementation | 9 | smtp.lua -- SMTP protocol implementation |
13 | 10 | ||
@@ -19,5 +16,17 @@ SMTP mail server. The implementation conforms to RFC 821. | |||
19 | The module ftp.lua provides functions to download and upload files from | 16 | The module ftp.lua provides functions to download and upload files from |
20 | and to FTP servers. The implementation conforms to RFC 959. | 17 | and to FTP servers. The implementation conforms to RFC 959. |
21 | 18 | ||
22 | These implementations are part of the LuaSocket library and are supported. | 19 | base64.lua -- base64 encoding implementation |
20 | |||
21 | The base64.lua module provides base64 encoding and decoding. The module | ||
22 | is used for the HTTP Basic Authentication Scheme, and conforms to RFC | ||
23 | 1521. | ||
24 | |||
25 | buffer.lua -- fast concatenation library | ||
26 | |||
27 | The module buffer.lua implements, completely in Lua, a set of functions | ||
28 | that greatly improves the performance of repeated concatenations of Lua | ||
29 | strings. The module was created by Roberto Ierusalimschy. | ||
30 | |||
31 | These modules are part of the LuaSocket library and are supported. | ||
23 | Please send any comments to diego@tecgraf.puc-rio.br. | 32 | Please send any comments to diego@tecgraf.puc-rio.br. |