fixed a bug in spectre where it would only bind to 127.0.0.1

This commit is contained in:
JT Smith 2006-07-05 14:02:18 +00:00
parent 5ad0bb3f96
commit 01ff53ed6c

View file

@ -77,7 +77,7 @@ STOP
if ($shutdown) { if ($shutdown) {
my $remote = create_ikc_client( my $remote = create_ikc_client(
port=>$config->get("port"), port=>$config->get("port"),
ip=>'127.0.0.1', ip=>$config->get("ip"),
name=>rand(100000), name=>rand(100000),
timeout=>10 timeout=>10
); );