Skip to content

Commit

Permalink
Updated to work with newest Rakudo
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Totten committed Jul 4, 2012
1 parent c727381 commit 0261e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/HTTP/Easy.pm6
Expand Up @@ -7,7 +7,7 @@ class HTTP::Easy {
has Int $.port = 8080;
has Str $.host = 'localhost';
has Bool $.debug = False;
has $!listener = IO::Socket::INET.new(:localhost($.host), :localport($.port), :listen(1));
has $!listener = IO::Socket::INET.new(:localhost($!host), :localport($!port), :listen(1));
has $.connection is rw; ## To be populated by accept().
has %.env; ## The environment, generated by run().
has $.body is rw; ## Any request body, populated by run().
Expand Down

0 comments on commit 0261e5f

Please sign in to comment.