Don't use a listen address by default.

This commit is contained in:
david 2013-08-16 08:03:08 +00:00
parent 1baf716fd0
commit b76967c325

View file

@ -74,7 +74,7 @@ sub wait_listen {
}
sub ncat_server {
my @ret = ncat($HOST, $PORT, "--test", "-l", @_);
my @ret = ncat($PORT, "--test", "-l", @_);
wait_listen($ret[3]);
return @ret;
}