TCP port listen: Fix the hint server as well

This commit is contained in:
Morten Minde Neergaard 2022-11-13 14:38:15 +01:00
parent 513e44d128
commit 02f21db6d0
2 changed files with 3 additions and 2 deletions
scripts

View file

@ -3,7 +3,7 @@
use IO::Socket;
$socket = IO::Socket::INET->new(PeerAddr => "127.0.0.1",
PeerPort => 1235,
PeerPort => $ENV{HINT_TCP_PORT},
Proto => "tcp",
Type => SOCK_STREAM);