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) {
my $remote = create_ikc_client(
port=>$config->get("port"),
ip=>'127.0.0.1',
ip=>$config->get("ip"),
name=>rand(100000),
timeout=>10
);
@ -113,4 +113,4 @@ sub ping {
undef $remote;
return 0 if ($result eq "pong");
return 1;
}
}