diff options
author | E. Westbrook <git@westbrook.io> | 2020-03-28 15:28:26 -0600 |
---|---|---|
committer | Eric Westbrook <github@westbrook.io> | 2020-03-28 22:21:23 +0000 |
commit | 5b18e475f38fcf28429b1cc4b17baee3b9793a62 (patch) | |
tree | ad124b511c485905ba8f4ba231ff0dfc9dcbfc30 | |
parent | 743a5f1bcf92e72df8b0ab36c3dee1f53e7d71c5 (diff) | |
download | luasocket-5b18e475f38fcf28429b1cc4b17baee3b9793a62.tar.gz luasocket-5b18e475f38fcf28429b1cc4b17baee3b9793a62.tar.bz2 luasocket-5b18e475f38fcf28429b1cc4b17baee3b9793a62.zip |
test/find-connect-limit: add missing "socket ="
-rwxr-xr-x | test/find-connect-limit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/find-connect-limit b/test/find-connect-limit index ad0c3f5..199e515 100755 --- a/test/find-connect-limit +++ b/test/find-connect-limit | |||
@@ -10,7 +10,7 @@ ulimit -n | |||
10 | You'll probably need to be root to do this. | 10 | You'll probably need to be root to do this. |
11 | ]] | 11 | ]] |
12 | 12 | ||
13 | require "socket" | 13 | socket = require "socket" |
14 | 14 | ||
15 | host = arg[1] or "google.com" | 15 | host = arg[1] or "google.com" |
16 | port = arg[2] or 80 | 16 | port = arg[2] or 80 |