Hello folks,

I'm creating a new tcp server using the new 0.10 API, and the the 
new listener 'readable' is firing before 'end' when a connection is closed 
by the client, end read() returns 'null', so is this behavior happening as 
expected? In fact this is the same behavior of sockets in C.

But this can cause a fatal error because read() returns a null, and you 
will need to check the read() return before doing something.


socket.on('readable', function() {

    var chunk = socket.read();

    if (chunk === null) return; /* fix, to let 'end' work and not crash 
your app */

    handle(chunk);

});



Marcelo Pacheco

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to