Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add ip of publi cpandatesters server
  • Loading branch information
FROGGS committed Nov 3, 2014
1 parent cca058d commit 36135eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Panda/Reporter.pm
Expand Up @@ -9,10 +9,10 @@ method submit {
if %*ENV<http_proxy> {
my ($host, $port) = %*ENV<http_proxy>.split('/').[2].split(':');
$s = IO::Socket::INET.new( :$host, :port($port.Int) );
$to-send = "POST http://127.0.0.1:3000/report HTTP/1.1\nHost: localhost\nConnection: Close";
$to-send = "POST http://85.25.222.109/report HTTP/1.1\nHost: localhost\nConnection: Close";
}
else {
$s = IO::Socket::INET.new(:host<127.0.0.1>, :port(3000));
$s = IO::Socket::INET.new(:host<85.25.222.109>, :port(80));
$to-send = "POST /report HTTP/1.0";
}

Expand Down

0 comments on commit 36135eb

Please sign in to comment.