mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
TCP port listen: Fix the hint server as well
This commit is contained in:
parent
513e44d128
commit
02f21db6d0
2 changed files with 3 additions and 2 deletions
|
@ -20,7 +20,8 @@ var _hint_client_connection
|
|||
|
||||
func _ready():
|
||||
_hint_server = TCP_Server.new()
|
||||
_hint_server.listen(1235)
|
||||
_hint_server.listen(1235, "127.0.0.1")
|
||||
OS.set_environment("HINT_TCP_PORT", "1235")
|
||||
|
||||
var args = helpers.parse_args()
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue