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 committed by blinry
parent 00d940fb86
commit 751b3b24a3
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);