diff options
author | E. Westbrook <git@westbrook.io> | 2020-03-28 15:28:26 -0600 |
---|---|---|
committer | E. Westbrook <git@westbrook.io> | 2020-03-28 15:28:26 -0600 |
commit | 3a66baed1500bb3ccbbc704bc10206e2f0cf12a2 (patch) | |
tree | fa937416cb0fb1c02a277b6f115540608333dae4 | |
parent | 790a58112f77a07cc7588b23c6f52961a41a2ff5 (diff) | |
download | luasocket-issue297.tar.gz luasocket-issue297.tar.bz2 luasocket-issue297.zip |
test/find-connect-limit: add missing "socket ="issue297
-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 |