diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2000-12-29 22:15:09 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2000-12-29 22:15:09 +0000 |
commit | 17c4d1c30544f0ed638879835f179ada96249868 (patch) | |
tree | 46ca8042ba8fda147f56af61e26ec2ceec41f614 /README | |
parent | 6f9d15b66027cef58441549f8ac0603ca42da0ac (diff) | |
download | luasocket-17c4d1c30544f0ed638879835f179ada96249868.tar.gz luasocket-17c4d1c30544f0ed638879835f179ada96249868.tar.bz2 luasocket-17c4d1c30544f0ed638879835f179ada96249868.zip |
Initial revision
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. | ||