Hello, I'm currently working on a project concerning an echo-algorithm implemented in Node. The problem I have is that Node is using it's own ports for sending over the sockets.
*Start-Node:*
var port_start = 20000;
var sendNode = net.connect(port_start,function(){
sendNode.write('info');
})
*
Recieving-Node:*
nodeServer.on('connection', function(client)
{
client.on('data',function(data)
{
}
