aboutsummaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-05-28 20:40:13 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-05-28 20:40:13 +0000
commitc23240726e3044e3eaa32a82a999b754c08bc183 (patch)
treeb04e29506e57795eda7ffdb6b3164801664a92b1 /samples
parent6c565dd7c06c96fd9b3394ade61f46da59590d30 (diff)
downloadluasocket-c23240726e3044e3eaa32a82a999b754c08bc183.tar.gz
luasocket-c23240726e3044e3eaa32a82a999b754c08bc183.tar.bz2
luasocket-c23240726e3044e3eaa32a82a999b754c08bc183.zip
Changed require"luasocket" to require"socket".
Diffstat (limited to 'samples')
-rw-r--r--samples/daytimeclnt.lua2
-rw-r--r--samples/echoclnt.lua2
-rw-r--r--samples/echosrvr.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/samples/daytimeclnt.lua b/samples/daytimeclnt.lua
index ee7f652..b4075e9 100644
--- a/samples/daytimeclnt.lua
+++ b/samples/daytimeclnt.lua
@@ -4,7 +4,7 @@
4-- Author: Diego Nehab 4-- Author: Diego Nehab
5-- RCS ID: $Id$ 5-- RCS ID: $Id$
6----------------------------------------------------------------------------- 6-----------------------------------------------------------------------------
7require"luasocket" 7require"socket"
8host = host or "127.0.0.1" 8host = host or "127.0.0.1"
9port = port or 13 9port = port or 13
10if arg then 10if arg then
diff --git a/samples/echoclnt.lua b/samples/echoclnt.lua
index a3d75f3..877e99b 100644
--- a/samples/echoclnt.lua
+++ b/samples/echoclnt.lua
@@ -4,7 +4,7 @@
4-- Author: Diego Nehab 4-- Author: Diego Nehab
5-- RCS ID: $Id$ 5-- RCS ID: $Id$
6----------------------------------------------------------------------------- 6-----------------------------------------------------------------------------
7require"luasocket" 7require"socket"
8host = host or "localhost" 8host = host or "localhost"
9port = port or 7 9port = port or 7
10if arg then 10if arg then
diff --git a/samples/echosrvr.lua b/samples/echosrvr.lua
index 9d99506..79bff8f 100644
--- a/samples/echosrvr.lua
+++ b/samples/echosrvr.lua
@@ -4,7 +4,7 @@
4-- Author: Diego Nehab 4-- Author: Diego Nehab
5-- RCS ID: $Id$ 5-- RCS ID: $Id$
6----------------------------------------------------------------------------- 6-----------------------------------------------------------------------------
7require"luasocket" 7require"socket"
8host = host or "127.0.0.1" 8host = host or "127.0.0.1"
9port = port or 7 9port = port or 7
10if arg then 10if arg then