aboutsummaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
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