Hi all,
I created a tcp server using nodejs codes below:

var net = require('net');
var server = net.createServer(function(c) { //'connection' listener
  console.log('server connected');

  c.on('data', function(data) {
          console.log("raw data: "+data.toString());
          buffer += data.toString();
          buffer = parsePacket(buffer);
  });

  c.on('end', function() {
      console.log('server disconnected');
  });

});

After a period of time,it stops data receiving.
I catch some packets using Wireshark.
A lot of TCP ZeroWindow errors.
I find the connection from the tcp client created by Java or C++
appears this issues, but the nodejs tcp client is fine.

Any replies are welcome.
xzYue

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to