aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorE. Westbrook <git@westbrook.io>2020-03-28 15:28:26 -0600
committerE. Westbrook <git@westbrook.io>2020-03-28 15:28:26 -0600
commit3a66baed1500bb3ccbbc704bc10206e2f0cf12a2 (patch)
treefa937416cb0fb1c02a277b6f115540608333dae4
parent790a58112f77a07cc7588b23c6f52961a41a2ff5 (diff)
downloadluasocket-issue297.tar.gz
luasocket-issue297.tar.bz2
luasocket-issue297.zip
test/find-connect-limit: add missing "socket ="issue297
-rwxr-xr-xtest/find-connect-limit2
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
10You'll probably need to be root to do this. 10You'll probably need to be root to do this.
11]] 11]]
12 12
13require "socket" 13socket = require "socket"
14 14
15host = arg[1] or "google.com" 15host = arg[1] or "google.com"
16port = arg[2] or 80 16port = arg[2] or 80