sergot m: my $conn = IO::Socket::INET.new( host => 'filip.sergot.pl', port => 80, timeout => 1 ); $conn.send("GET / HTTP/1.1\r\nHost: filip.sergot.pl\r\n\r\n"); say $conn.recv().encode('utf8').bytes; 00:58
camelia rakudo-moar 847bd5: OUTPUT«4380␤»
sergot m: my $conn = IO::Socket::INET.new( host => 'filip.sergot.pl', port => 80, timeout => 1 ); $conn.send("GET / HTTP/1.1\r\nHost: filip.sergot.pl\r\n\r\n"); say $conn.lines.join("\n").encode('utf8').bytes; 00:59
camelia rakudo-moar 847bd5: OUTPUT«12292␤»
sergot I think that's moarvm's bug
something with MVM_io_read_string
probably 01:10
99: MVMString *result = handle->body.ops->sync_readable->read_chars(tc, handle, chars); // maybe even something here, I have no clue 01:17
:)