aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorDiego Nehab <diego.nehab@gmail.com>2012-04-23 00:18:45 +0800
committerDiego Nehab <diego.nehab@gmail.com>2012-04-23 00:18:45 +0800
commitf960b3872a668ed1b53bd50c5b6a708367332f3c (patch)
treee82a1b113ed40d70afae36d230b6a6048e1d9fab /etc
parentf37e0260261f7691246429d227cf7124c291e8b1 (diff)
downloadluasocket-f960b3872a668ed1b53bd50c5b6a708367332f3c.tar.gz
luasocket-f960b3872a668ed1b53bd50c5b6a708367332f3c.tar.bz2
luasocket-f960b3872a668ed1b53bd50c5b6a708367332f3c.zip
Making progress toward a release
Documented headers.lua Update copyright date everywhere Remove RCSID from files Move version back to 2.1 rather than 2.1.1 Fixed url package to support ipv6 hosts Changed "domain" to "family" in tcp and udp structures Implemented getfamily methods
Diffstat (limited to 'etc')
-rw-r--r--etc/b64.lua1
-rw-r--r--etc/check-links.lua1
-rw-r--r--etc/dict.lua1
-rw-r--r--etc/dispatch.lua1
-rw-r--r--etc/eol.lua1
-rw-r--r--etc/get.lua1
-rw-r--r--etc/lp.lua1
-rw-r--r--etc/qp.lua1
-rw-r--r--etc/tftp.lua1
9 files changed, 0 insertions, 9 deletions
diff --git a/etc/b64.lua b/etc/b64.lua
index f75c423..11eeb2d 100644
--- a/etc/b64.lua
+++ b/etc/b64.lua
@@ -2,7 +2,6 @@
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: b64.lua,v 1.8 2004/06/16 04:28:21 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7local ltn12 = require("ltn12") 6local ltn12 = require("ltn12")
8local mime = require("mime") 7local mime = require("mime")
diff --git a/etc/check-links.lua b/etc/check-links.lua
index a989f8c..d2e4266 100644
--- a/etc/check-links.lua
+++ b/etc/check-links.lua
@@ -3,7 +3,6 @@
3-- non-blocking I/O via the dispatcher module. 3-- non-blocking I/O via the dispatcher module.
4-- LuaSocket sample files 4-- LuaSocket sample files
5-- Author: Diego Nehab 5-- Author: Diego Nehab
6-- RCS ID: $$
7----------------------------------------------------------------------------- 6-----------------------------------------------------------------------------
8local url = require("socket.url") 7local url = require("socket.url")
9local dispatch = require("dispatch") 8local dispatch = require("dispatch")
diff --git a/etc/dict.lua b/etc/dict.lua
index e375d23..8c5b711 100644
--- a/etc/dict.lua
+++ b/etc/dict.lua
@@ -2,7 +2,6 @@
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: dict.lua,v 1.22 2005/11/22 08:33:29 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7 6
8----------------------------------------------------------------------------- 7-----------------------------------------------------------------------------
diff --git a/etc/dispatch.lua b/etc/dispatch.lua
index 5236f3d..cc8cb23 100644
--- a/etc/dispatch.lua
+++ b/etc/dispatch.lua
@@ -2,7 +2,6 @@
2-- A hacked dispatcher module 2-- A hacked dispatcher module
3-- LuaSocket sample files 3-- LuaSocket sample files
4-- Author: Diego Nehab 4-- Author: Diego Nehab
5-- RCS ID: $$
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7local base = _G 6local base = _G
8local table = require("table") 7local table = require("table")
diff --git a/etc/eol.lua b/etc/eol.lua
index b90be79..eeaf0ce 100644
--- a/etc/eol.lua
+++ b/etc/eol.lua
@@ -2,7 +2,6 @@
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: eol.lua,v 1.8 2005/11/22 08:33:29 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7local mime = require("mime") 6local mime = require("mime")
8local ltn12 = require("ltn12") 7local ltn12 = require("ltn12")
diff --git a/etc/get.lua b/etc/get.lua
index 4c344e2..4196f00 100644
--- a/etc/get.lua
+++ b/etc/get.lua
@@ -2,7 +2,6 @@
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: get.lua,v 1.25 2007/03/12 04:08:40 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7local socket = require("socket") 6local socket = require("socket")
8local http = require("socket.http") 7local http = require("socket.http")
diff --git a/etc/lp.lua b/etc/lp.lua
index d57c928..25f0b95 100644
--- a/etc/lp.lua
+++ b/etc/lp.lua
@@ -3,7 +3,6 @@
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: lp.lua,v 1.14 2005/11/21 07:04:44 diego Exp $
7----------------------------------------------------------------------------- 6-----------------------------------------------------------------------------
8--[[ 7--[[
9 if you have any questions: RFC 1179 8 if you have any questions: RFC 1179
diff --git a/etc/qp.lua b/etc/qp.lua
index a4c0cad..523238b 100644
--- a/etc/qp.lua
+++ b/etc/qp.lua
@@ -2,7 +2,6 @@
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: qp.lua,v 1.5 2004/06/17 21:46:22 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7local ltn12 = require("ltn12") 6local ltn12 = require("ltn12")
8local mime = require("mime") 7local mime = require("mime")
diff --git a/etc/tftp.lua b/etc/tftp.lua
index 7f51c6f..ed99cd1 100644
--- a/etc/tftp.lua
+++ b/etc/tftp.lua
@@ -2,7 +2,6 @@
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: tftp.lua,v 1.16 2005/11/22 08:33:29 diego Exp $
6----------------------------------------------------------------------------- 5-----------------------------------------------------------------------------
7 6
8----------------------------------------------------------------------------- 7-----------------------------------------------------------------------------