You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server = TCPServer.open(8000)
loop do
Thread.start(server.accept) do |client|
client.write "HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\nConnection: close\r\nContent-Length: 11\r\n\r\nHello world"
client.close
end
end
on Ubuntu 18.04.
At the first request, the program exits with a Segmentation fault.
The text was updated successfully, but these errors were encountered:
Was: mruby/mruby#4949
This:
on Ubuntu 18.04.
At the first request, the program exits with a Segmentation fault.
The text was updated successfully, but these errors were encountered: