At least i never get the "connect" message...
s=net.createServer(net.TCP)
s:listen(8007,function(c)
c:on("receive",function(c,l)
uart.write(0,l)
end)
c:on("connection",function(c)
print("connect")
end)
c:on("disconnection",function(c)
print("disconnect")
end)
end)
did i do something wrong, or is this behavior unintentional?