local p, conn = connection.listen(port)
local host = conn:name()
When a new connection arrives, "host" is false.
Tracking this down, it appears on line 150 that the first argument to connection.new() should be "i:"..event[2].origin. When I did that, I was able to get an unmangled connection.
I observed this when I do something like
When a new connection arrives, "host" is false.
Tracking this down, it appears on line 150 that the first argument to connection.new() should be
"i:"..event[2].origin
. When I did that, I was able to get an unmangled connection.