diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2012-04-11 13:21:25 -0700 |
---|---|---|
committer | Sam Roberts <vieuxtech@gmail.com> | 2012-04-11 13:25:11 -0700 |
commit | 2778766d678b147fc079d67dee036346381b4764 (patch) | |
tree | da44507f62fb9c8cd078cf25f6dc24107e56af34 /etc | |
parent | 3a8ba90dfb0c2eb224f317dd692ede426691e72a (diff) | |
download | luasocket-2778766d678b147fc079d67dee036346381b4764.tar.gz luasocket-2778766d678b147fc079d67dee036346381b4764.tar.bz2 luasocket-2778766d678b147fc079d67dee036346381b4764.zip |
Preliminary IPv6 support for v2.1
Diffstat (limited to 'etc')
-rw-r--r-- | etc/b64.lua | 2 | ||||
-rw-r--r-- | etc/dict.lua | 2 | ||||
-rw-r--r-- | etc/eol.lua | 2 | ||||
-rw-r--r-- | etc/get.lua | 2 | ||||
-rw-r--r-- | etc/lp.lua | 2 | ||||
-rw-r--r-- | etc/qp.lua | 2 | ||||
-rw-r--r-- | etc/tftp.lua | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/etc/b64.lua b/etc/b64.lua index d74c949..f75c423 100644 --- a/etc/b64.lua +++ b/etc/b64.lua | |||
@@ -2,7 +2,7 @@ | |||
2 | -- Little program to convert to and from Base64 | 2 | -- Little program to convert to and from Base64 |
3 | -- LuaSocket sample files | 3 | -- LuaSocket sample files |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: b64.lua,v 1.8 2004/06/16 04:28:21 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | local ltn12 = require("ltn12") | 7 | local ltn12 = require("ltn12") |
8 | local mime = require("mime") | 8 | local mime = require("mime") |
diff --git a/etc/dict.lua b/etc/dict.lua index 6eb3210..e375d23 100644 --- a/etc/dict.lua +++ b/etc/dict.lua | |||
@@ -2,7 +2,7 @@ | |||
2 | -- Little program to download DICT word definitions | 2 | -- Little program to download DICT word definitions |
3 | -- LuaSocket sample files | 3 | -- LuaSocket sample files |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: dict.lua,v 1.22 2005/11/22 08:33:29 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | 7 | ||
8 | ----------------------------------------------------------------------------- | 8 | ----------------------------------------------------------------------------- |
diff --git a/etc/eol.lua b/etc/eol.lua index d7c5db6..b90be79 100644 --- a/etc/eol.lua +++ b/etc/eol.lua | |||
@@ -2,7 +2,7 @@ | |||
2 | -- Little program to adjust end of line markers. | 2 | -- Little program to adjust end of line markers. |
3 | -- LuaSocket sample files | 3 | -- LuaSocket sample files |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: eol.lua,v 1.8 2005/11/22 08:33:29 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | local mime = require("mime") | 7 | local mime = require("mime") |
8 | local ltn12 = require("ltn12") | 8 | local ltn12 = require("ltn12") |
diff --git a/etc/get.lua b/etc/get.lua index 0d631c2..4c344e2 100644 --- a/etc/get.lua +++ b/etc/get.lua | |||
@@ -2,7 +2,7 @@ | |||
2 | -- Little program to download files from URLs | 2 | -- Little program to download files from URLs |
3 | -- LuaSocket sample files | 3 | -- LuaSocket sample files |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: get.lua,v 1.25 2007/03/12 04:08:40 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | local socket = require("socket") | 7 | local socket = require("socket") |
8 | local http = require("socket.http") | 8 | local http = require("socket.http") |
@@ -3,7 +3,7 @@ | |||
3 | -- LuaSocket toolkit. | 3 | -- LuaSocket toolkit. |
4 | -- Author: David Burgess | 4 | -- Author: David Burgess |
5 | -- Modified by Diego Nehab, but David is in charge | 5 | -- Modified by Diego Nehab, but David is in charge |
6 | -- RCS ID: $Id$ | 6 | -- RCS ID: $Id: lp.lua,v 1.14 2005/11/21 07:04:44 diego Exp $ |
7 | ----------------------------------------------------------------------------- | 7 | ----------------------------------------------------------------------------- |
8 | --[[ | 8 | --[[ |
9 | if you have any questions: RFC 1179 | 9 | if you have any questions: RFC 1179 |
@@ -2,7 +2,7 @@ | |||
2 | -- Little program to convert to and from Quoted-Printable | 2 | -- Little program to convert to and from Quoted-Printable |
3 | -- LuaSocket sample files | 3 | -- LuaSocket sample files |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: qp.lua,v 1.5 2004/06/17 21:46:22 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | local ltn12 = require("ltn12") | 7 | local ltn12 = require("ltn12") |
8 | local mime = require("mime") | 8 | local mime = require("mime") |
diff --git a/etc/tftp.lua b/etc/tftp.lua index 4051e74..7f51c6f 100644 --- a/etc/tftp.lua +++ b/etc/tftp.lua | |||
@@ -2,7 +2,7 @@ | |||
2 | -- TFTP support for the Lua language | 2 | -- TFTP support for the Lua language |
3 | -- LuaSocket toolkit. | 3 | -- LuaSocket toolkit. |
4 | -- Author: Diego Nehab | 4 | -- Author: Diego Nehab |
5 | -- RCS ID: $Id$ | 5 | -- RCS ID: $Id: tftp.lua,v 1.16 2005/11/22 08:33:29 diego Exp $ |
6 | ----------------------------------------------------------------------------- | 6 | ----------------------------------------------------------------------------- |
7 | 7 | ||
8 | ----------------------------------------------------------------------------- | 8 | ----------------------------------------------------------------------------- |