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