diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-05-28 20:40:13 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-05-28 20:40:13 +0000 |
commit | c23240726e3044e3eaa32a82a999b754c08bc183 (patch) | |
tree | b04e29506e57795eda7ffdb6b3164801664a92b1 /samples | |
parent | 6c565dd7c06c96fd9b3394ade61f46da59590d30 (diff) | |
download | luasocket-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.lua | 2 | ||||
-rw-r--r-- | samples/echoclnt.lua | 2 | ||||
-rw-r--r-- | samples/echosrvr.lua | 2 |
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 | ----------------------------------------------------------------------------- |
7 | require"luasocket" | 7 | require"socket" |
8 | host = host or "127.0.0.1" | 8 | host = host or "127.0.0.1" |
9 | port = port or 13 | 9 | port = port or 13 |
10 | if arg then | 10 | if 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 | ----------------------------------------------------------------------------- |
7 | require"luasocket" | 7 | require"socket" |
8 | host = host or "localhost" | 8 | host = host or "localhost" |
9 | port = port or 7 | 9 | port = port or 7 |
10 | if arg then | 10 | if 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 | ----------------------------------------------------------------------------- |
7 | require"luasocket" | 7 | require"socket" |
8 | host = host or "127.0.0.1" | 8 | host = host or "127.0.0.1" |
9 | port = port or 7 | 9 | port = port or 7 |
10 | if arg then | 10 | if arg then |