aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README19
1 files changed, 14 insertions, 5 deletions
diff --git a/README b/README
index d708668..6b84d8a 100644
--- a/README
+++ b/README
@@ -2,12 +2,9 @@ This directory contains the implementation of the protocols FTP, HTTP
2and SMTP. The files provided are: 2and 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
7The module http.lua provides general HTTP client support. The 6The module http.lua provides general HTTP client support. The
8implementation conforms to the HTTP/1.1 standard, RFC 2068. The 7implementation conforms to the HTTP/1.1 standard, RFC 2068.
9base64.lua module provides base64 encoding and decoding. The module is
10used 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.
19The module ftp.lua provides functions to download and upload files from 16The module ftp.lua provides functions to download and upload files from
20and to FTP servers. The implementation conforms to RFC 959. 17and to FTP servers. The implementation conforms to RFC 959.
21 18
22These implementations are part of the LuaSocket library and are supported. 19 base64.lua -- base64 encoding implementation
20
21The base64.lua module provides base64 encoding and decoding. The module
22is used for the HTTP Basic Authentication Scheme, and conforms to RFC
231521.
24
25 buffer.lua -- fast concatenation library
26
27The module buffer.lua implements, completely in Lua, a set of functions
28that greatly improves the performance of repeated concatenations of Lua
29strings. The module was created by Roberto Ierusalimschy.
30
31These modules are part of the LuaSocket library and are supported.
23Please send any comments to diego@tecgraf.puc-rio.br. 32Please send any comments to diego@tecgraf.puc-rio.br.