aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README24
1 files changed, 24 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..c4ac6fd
--- /dev/null
+++ b/README
@@ -0,0 +1,24 @@
1This directory contains the implementation of the protocols FTP, HTTP and
2SMTP. The files provided are:
3
4 http.lua -- HTTP protocol implementation
5 base64.lua -- base64 encoding implementation
6
7The module http.lua provides functionality to download an URL from a
8HTTP server. The implementation conforms to the HTTP/1.1 standard, RFC
92068. The base64.lua module provides base64 encoding and decoding. The
10module is used for the HTTP Basic Authentication Scheme, and conforms to
11RFC 1521.
12
13 smtp.lua -- SMTP protocol implementation
14
15The module smtp.lua provides functionality to send e-mail messages to a
16SMTP mail server. The implementation conforms to RFC 821.
17
18 ftp.lua -- FTP protocol implementation
19
20The module ftp.lua provides functions to download and upload files from
21and to FTP servers. The implementation conforms to RFC 959.
22
23These implementations are supported. Please send any comments do
24diego@tecgraf.puc-rio.br.