From 19ec2e1233469f101c66bad2a715e0043158bca1 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 14 Oct 2017 21:44:37 -0700 Subject: [PATCH] Er, use localhost IP address --- modules/compiler_client.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/compiler_client.pl b/modules/compiler_client.pl index c1304d91..865d329a 100755 --- a/modules/compiler_client.pl +++ b/modules/compiler_client.pl @@ -16,7 +16,7 @@ use IO::Socket::INET; use JSON; my $sock = IO::Socket::INET->new( - PeerAddr => '192.168.0.42', + PeerAddr => '127.0.0.1', PeerPort => 9000, Proto => 'tcp');