aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README17
1 files changed, 8 insertions, 9 deletions
diff --git a/README b/README
index c4ac6fd..d708668 100644
--- a/README
+++ b/README
@@ -1,14 +1,13 @@
1This directory contains the implementation of the protocols FTP, HTTP and 1This directory contains the implementation of the protocols FTP, HTTP
2SMTP. 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 5 base64.lua -- base64 encoding implementation
6 6
7The module http.lua provides functionality to download an URL from a 7The module http.lua provides general HTTP client support. The
8HTTP server. The implementation conforms to the HTTP/1.1 standard, RFC 8implementation conforms to the HTTP/1.1 standard, RFC 2068. The
92068. The base64.lua module provides base64 encoding and decoding. The 9base64.lua module provides base64 encoding and decoding. The module is
10module is used for the HTTP Basic Authentication Scheme, and conforms to 10used for the HTTP Basic Authentication Scheme, and conforms to RFC 1521.
11RFC 1521.
12 11
13 smtp.lua -- SMTP protocol implementation 12 smtp.lua -- SMTP protocol implementation
14 13
@@ -20,5 +19,5 @@ SMTP mail server. The implementation conforms to RFC 821.
20The module ftp.lua provides functions to download and upload files from 19The module ftp.lua provides functions to download and upload files from
21and to FTP servers. The implementation conforms to RFC 959. 20and to FTP servers. The implementation conforms to RFC 959.
22 21
23These implementations are supported. Please send any comments do 22These implementations are part of the LuaSocket library and are supported.
24diego@tecgraf.puc-rio.br. 23Please send any comments to diego@tecgraf.puc-rio.br.